Note that there are some explanatory texts on larger screens.

plurals
  1. POgoogle app engine not able to get blob keys in production only
    primarykey
    data
    text
    <p>I have hit a snag that i can not seem to solve. My issue is with retrieving the blob key after the app engine has called my service back. I have tried using <code>blobstoreService.getUploads(request)</code> and i have also tried pulling the blob key from the input stream on the request that is called back to me.</p> <p>the really strange part is that if i go look into the dashboard i see all of my images in the blob store data view.</p> <p>I get this error no matter how i try to get the blob keys out :</p> <blockquote> <p>com.google.apphosting.utils.servlet.ParseBlobUploadFilter doFilter: Could not parse multipart message: javax.mail.internet.ParseException: Missing ';'</p> </blockquote> <p>I am really hung up on this one and i could really use a little help. </p> <p>EDIT more of the code</p> <p>the fetch of the blob store url</p> <pre><code>private String fetchUrl() { String url = blobstoreService.createUploadUrl("/BS/returnKey"); return url; } </code></pre> <p>snippit of the return code where the error occurs</p> <pre><code>... if(inUrl.contains("returnKey")) { Map&lt;String, List&lt;BlobKey&gt;&gt; blobs = blobstoreService.getUploads(req); ... </code></pre> <p>so in my dev environment (the development app server packed in with GAE plugin for eclipse), it works fine, but then after i deploy to the app engine, the same code will not work. I also tried pulling the data out of the Input stream from the request with teh same results (working on the dev , not on the prod).</p> <p>thanks to everyone for your help!</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload