[appengine-java] Re: How to upload larger than than 1M size file

2009-08-27 Thread Shawn
Any one can help me to resovle this problem? On 8月27日, 下午3时38分, Shawn wrote: > Hi,all. > > How to upload larger than than 1M size file?I try to use the > google plugin for eclipse to upload.But the > > message like this: > > java.io.IOException: Error posting to > URL:http://appengine.goog

[appengine-java] Re: How to upload larger than than 1M size file

2009-08-27 Thread Jayson Falkner
Did you check that you can do this? Google imposes size limits on HTTP requests and uploads. You might have to be more clever when uploading larger files. Jayson 2009/8/27 Shawn : > > Any one can help me to resovle this problem? > > On 8月27日, 下午3时38分, Shawn wrote: >> Hi,all. >> >> How to

[appengine-java] Re: How to upload larger than than 1M size file

2009-08-28 Thread Jason (Google)
You should be able to upload a file up to 10 MB (the maximum request size) but you won't be able to persist it in the datastore unless you split the file into 1 MB chunks (the maximum entity size). You can write the code to do this yourself, but you may also want to look at existing abstraction lay