[appengine-java] 1MB URL Fetch limit

2011-05-07 Thread aptest1 actiprocess
Hi all,
 I am currently developing a content management system on App engine using 
Google documents as the content store.
User needs to upload documents using HTTP post request with document 
metadata and content

In application I have to collect the data from request body and create the 
document in Google docs with the content and metadata
And we can  able to get the data in request and store in Google docs.

But i have a problem with my application. i.e i can not upload document if 
its more than 1 Mb as URL fetch not support more than 1 Mb.

http://code.google.com/appengine/docs/java/urlfetch/overview.html

please kindly help me and if u can provide me with the statistics of how app 
engine is reliable.

If anyone has a suggestion, it will be greatly appreciated!


Thanks
Mahesh.B




-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



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

2010-09-13 Thread Lucian Baciu
Does the 1MB request limit listed here:
http://code.google.com/appengine/docs/java/urlfetch/overview.html
apply to upload requests send to the blobstore as well?

Thanks,
Lucian

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



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

2010-09-13 Thread Ikai Lan (Google)
No. You will be able to upload large files to the blobstore.

On Mon, Sep 13, 2010 at 6:54 AM, Lucian Baciu  wrote:

> Does the 1MB request limit listed here:
> http://code.google.com/appengine/docs/java/urlfetch/overview.html
> apply to upload requests send to the blobstore as well?
>
> Thanks,
> Lucian
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine for Java" group.
> To post to this group, send email to
> google-appengine-j...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine-java+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine-java?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



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

2010-09-13 Thread Lucian Baciu
What I meant is actually send POST requests using the URL Fetch API to the
blobstore. I've done a test and the request limit does apply :( so I can't
send files larger then 1MB in size.
My app has a dropbox servlet (i.e. users send emails to the app with
attachments) and my app saves these attachments to the blobstore, this is
the reason why I need to call the blobstore service from a servlet.
So it would be so great if you would remove this limit at least for requests
send to the blobstore or offer some other way to archive this.

Thank you,
Lucian

On Mon, Sep 13, 2010 at 9:58 PM, Ikai Lan (Google)

> wrote:

> No. You will be able to upload large files to the blobstore.
>
> On Mon, Sep 13, 2010 at 6:54 AM, Lucian Baciu wrote:
>
>> Does the 1MB request limit listed here:
>> http://code.google.com/appengine/docs/java/urlfetch/overview.html
>> apply to upload requests send to the blobstore as well?
>>
>> Thanks,
>> Lucian
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google App Engine for Java" group.
>> To post to this group, send email to
>> google-appengine-j...@googlegroups.com.
>> To unsubscribe from this group, send email to
>> google-appengine-java+unsubscr...@googlegroups.com
>> .
>> For more options, visit this group at
>> http://groups.google.com/group/google-appengine-java?hl=en.
>>
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine for Java" group.
> To post to this group, send email to
> google-appengine-j...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine-java+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine-java?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



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

2010-09-13 Thread Ikai Lan (Google)
We can't for the time being. Our track record so far has been to raise or
remove limits (blobstore, task queues, etc), so we hope to do this as well
with our URLFetch API.

On Mon, Sep 13, 2010 at 12:08 PM, Lucian Baciu wrote:

> What I meant is actually send POST requests using the URL Fetch API to the
> blobstore. I've done a test and the request limit does apply :( so I can't
> send files larger then 1MB in size.
> My app has a dropbox servlet (i.e. users send emails to the app with
> attachments) and my app saves these attachments to the blobstore, this is
> the reason why I need to call the blobstore service from a servlet.
> So it would be so great if you would remove this limit at least for
> requests send to the blobstore or offer some other way to archive this.
>
> Thank you,
> Lucian
>
> On Mon, Sep 13, 2010 at 9:58 PM, Ikai Lan (Google) <
> ikai.l+gro...@google.com > wrote:
>
>>  No. You will be able to upload large files to the blobstore.
>>
>> On Mon, Sep 13, 2010 at 6:54 AM, Lucian Baciu wrote:
>>
>>> Does the 1MB request limit listed here:
>>> http://code.google.com/appengine/docs/java/urlfetch/overview.html
>>> apply to upload requests send to the blobstore as well?
>>>
>>> Thanks,
>>> Lucian
>>>
>>> --
>>> You received this message because you are subscribed to the Google Groups
>>> "Google App Engine for Java" group.
>>> To post to this group, send email to
>>> google-appengine-j...@googlegroups.com.
>>> To unsubscribe from this group, send email to
>>> google-appengine-java+unsubscr...@googlegroups.com
>>> .
>>> For more options, visit this group at
>>> http://groups.google.com/group/google-appengine-java?hl=en.
>>>
>>>
>>  --
>> You received this message because you are subscribed to the Google Groups
>> "Google App Engine for Java" group.
>> To post to this group, send email to
>> google-appengine-j...@googlegroups.com.
>> To unsubscribe from this group, send email to
>> google-appengine-java+unsubscr...@googlegroups.com
>> .
>> For more options, visit this group at
>> http://groups.google.com/group/google-appengine-java?hl=en.
>>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine for Java" group.
> To post to this group, send email to
> google-appengine-j...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine-java+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine-java?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.