[appengine-java] Re: 1MB URL Fetch limit and blobstore service

2010-09-29 Thread Martin Bayly
Hi Lucian Can you give some more details on how you worked around this issue. Did you use a RequestDispatcher.forward to redirect your dropbox request server side to the blob upload url. Presumably you had to rewrite the request data? Was your original request in mulitpart/form-data or did you

Re: [appengine-java] Re: 1MB URL Fetch limit and blobstore service

2010-09-29 Thread Lucian Baciu
Hi Martin, Yes, I used RequestDispatcher.forward to redirect to the blobstore URL. Yes, I had to rewrite the request using HttpServletRequestWrapper to set the Content-Type header to multipart-form-data and set the body data. Unfortunately, this only worked on the development server, when

[appengine-java] Re: 1MB URL Fetch limit and blobstore service

2010-09-15 Thread Lucian Baciu
It worked! GREAT suggestion! Thank you, Lucian On Sep 14, 1:14 am, Robert Lancer robert.lan...@gmail.com wrote: Humm, Im not sure this would work but maybe you could use a transfer or send redirect to do the upload since the blob store upload URL is within your app. On Sep 13, 3:08 pm,

[appengine-java] Re: 1MB URL Fetch limit and blobstore service

2010-09-13 Thread Robert Lancer
Humm, Im not sure this would work but maybe you could use a transfer or send redirect to do the upload since the blob store upload URL is within your app. On Sep 13, 3:08 pm, Lucian Baciu lucianba...@gmail.com wrote: What I meant is actually send POST requests using the URL Fetch API to the