[google-appengine] BlobStore - DownloadError: ApplicationError: 2 [Errno 35] Resource temporarily unavailable

2011-02-08 Thread Jawon
In my app, the user uploads one or more files as blobs, then the app takes the blobs, adds BlobReader objects of them to a SOAP request, and sends the request to an external server. I've tested the SOAP request sender outside GAE (using open(filename) instead of BlobReader), and also confirmed

[google-appengine] Re: Set a default deadline for urlfetch?

2011-01-20 Thread Jawon
Perfect - thank you! On Jan 18, 7:54 pm, Nick Johnson (Google) nick.john...@google.com wrote: Hi Jawon, You can do this by using an API call hook, like so: def urlfetch_timeout_hook(service, call, request, response):   if call != 'Fetch':     return   # Make the default deadline 10

[google-appengine] Multiple blob uploads in single POST form?

2011-01-18 Thread Jawon
-upload-support. I couldn't find any information on the official GAE docs as to whether or not this is still the case. Before I dive into the workaround above, could someone confirm that GAE still does not support multiple blob uploads? Thanks, Jawon -- You received this message because you

[google-appengine] Set a default deadline for urlfetch?

2011-01-18 Thread Jawon
, in get_result return self.__get_result_hook(self) File /base/python_runtime/python_lib/versions/1/google/appengine/ api/urlfetch.py, line 331, in _get_fetch_result raise DownloadError(str(err)) DownloadError: ApplicationError: 5 Thank you, Jawon Lee -- You received this message because