[google-appengine] Re: what is the max length of get and post headers?

2009-02-07 Thread higherone

Thanks,but my question seems not being answered.I still don't know why
i only get part of the string . to clarify, i use windows ie explorer.
I guess GAE has do some limits .I need further help.thanks


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



[google-appengine] Re: what is the max length of get and post headers?

2009-02-06 Thread Geoffrey Spear



On Feb 6, 3:22 am, higherone higher...@gmail.com wrote:
 if my data is a little long,i.e url =http://favmng.appspot.com/getfav?
 mydata=aaaf, I can't get the whole mydata
 value using
 self.request.get('mydata').
 Is there any way to release or change this header length bigger?

You should certainly be able to get the data in your example.  I'm not
sure App Engine has a set limit, but most web browsers limit the size
of a URL they'll send, which effectively limits the size of parameters
passed in the URL.  W3C recommends not relying on URLs longer than 255
characters, although modern browsers support more (I believe IE's 2083
character limit is the smallest of the major browsers).

For POST requests, I believe the limit per parameter is 1MB on App
Engine.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---