My setup: Android send/receive to Django on Goolge App Engine server.
My problem: Trying to send an image (byte[]) up to GAE and struggling.
If from Android I use UrlEncodedFormEntity, then the server can decode the POST fine. How do I include the byte[] jpeg data in this?
I tried using MultipartEntity with StringBody and InputStreamBody but the server side isn't picking out the values like it does with UrlEncodedFormEntity.
Any hints on what I'm doing wrong, or where to look?
My overall goal, again, is to send up the image bytes and retrieve them later. An example of POSTing an image would be fantastic.
Thanks!

