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?