tags:

views:

111

answers:

2

Please, does anyone knows how can I upload data directly to the blobstore, I mean, data coming from an urlfetch or an e-mail atachment?

A: 

From what it looks like the blobstore catches/processes requests before they reach the general app-engine cluster. So the only way to add data into the blobstore is via an HTTP multipart POST.

If you are intending on adding something to the blobstore while you are already within your application you are more than likely going to hit the 30second request timeout.

If your data is smaller than 1MB, then you should just use the blob properties. If it is larger than 1MB then you will have to change your approach.

ozone
A: 

Thanks for your answer, its just what I though, the quotas limitations in appengine are very restrictive..., I have been implementing approaches to problems with solutions that are far from somsething realistic in any other environment, anyway, thanks...

Anders

Anders