Maximum HTTP GET Method in JSON
I am doing an HTTP GET with JSONP from GWT..
The URL contains +1000 character. The problem is the request doesn't reach the server
Do you see the problem here in the length of the HTTP URL? as when I do request the same server with fewer characers (+500 character) I get it working..
BTW, it appears to be IE8-only i开发者_Python百科ssue.
Thanks?
There is a maximum lenght for IE, but 1000 chars should be fine. As documented here: http://support.microsoft.com/kb/q208427/ IE should handle upto 2,083 characters.
In any case: it is recommended to do posts for such large datasets. POST does not have these limits.
精彩评论