On Tue, Nov 19, 2013 at 9:40 AM, Rich <[email protected]> wrote:
>
> This seems to be working fine on the Dev Server but *not* on the live
> AppEngine.
>
>

Can you use *HttpServletRequest.getHeaders* and inspect the headers you're
receiving on your servlet? See
http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#getHeaders(java.lang.String).
Specifically, check the *content-type* that the request is declaring.


On Tue, Nov 19, 2013 at 9:40 AM, Rich <[email protected]> wrote:

> Note, that the blobs are still retrievable
> with blobstore.get{File,Blob}Infos(req), but I cannot access the additional
> data that was sent with the request.
>
>

What specifically is this additional data? How is it formatted, what it
looks like, etc. Can you describe what *myExtraData* in your code example
represents? If you're speaking about the metadata describing the file,
that's available through the *BlobInfo* class. If you're talking about
standard parameters, that's available through *getParameter(key)*.

If there is any additional data in the request, you may be able to find it
by inspecting the raw request data. Call *getInputStream()* on the request
and print out the stream.


-----------------
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to