0

I'm writing a server side handler for JSONP request. It's a Java version of GAE.

My local dev server doesn't like the length of the query string. I have to use JSONP as this will be a cross domain request.

Is there a limit on GAE for how long the query string can be? Is that a browser thing?

Do I have to split the request into many and maintain the state on the GAE Handler side?

greggigon
  • 3
  • 2
  • I just tried the same request in the different browser and it seems it's a browser thing. Chrome was unable to handle request with query string more than 4000 characters. Firefox was ok with it. This question was useful as well http://stackoverflow.com/questions/812925/what-is-the-maximum-possible-length-of-a-query-string . – greggigon Oct 30 '13 at 13:14

1 Answers1

0

If it's a really long request, you probably want to submit paramters via a POST request, rather than in the URL.

dragonx
  • 14,963
  • 27
  • 44