Which URL do you use for uploading your file ?
I'm supossing that by "Anything beyond 1MB doesn't reach the servlet",
you mean : An error occur like an "RequestTooLargeException" is
throwed.
To upload your file into the Blobstore service, you have to generate a
temporary upload URL using
blobstoreService.createUploadUrl("/upload") (this method will generate
a url like this : http//yourapp/_ah/upload/1A4343HAB3242C )
When the upload is complete, you'll be notified on the /upload (url
used in createUploadUrl method).
cf
http://code.google.com/intl/fr/appengine/docs/java/blobstore/overview.html#Uploading_a_Blob
Regards
On 16 oct, 04:46, MasterGaurav <[email protected]> wrote:
> Hi,
>
> I trying to upload file onto Blob Store. I am able to upload files
> only upto 1MB. Anything beyond 1MB doesn't reach the servlet.
>
> Is it a hard limit or am I doing something wrong?
>
> I'm using simple code...
>
> ---------------------------------------
> BlobstoreService blobSvc =
> BlobstoreServiceFactory.getBlobstoreService();
> Map<String, BlobKey> blobs = blobSvc.getUploadedBlobs(req);
> ---------------------------------------
>
> -Gauravwww.mastergaurav.com
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.