Hi,
I am getting a "400 Bad HTTP request " error when form has large data.
I am using Ajax to make a request. I read that the max limit of the HTTP POST data limit
varies from 2MB to 8MB that depends on the client and Server.But my data is about to 15Kb only.
What I was not able to understand that is there any limit for individual parameters also?
Let's say: I have two parameters which has to be sent to my Ajax request.
refHttp.open('POST','main.do?param1='+para1+'¶m2='+para2,true);
Data of the each parameter para1 and para2 may be lager(around to 6KB) sometimes.
Is there any restriction on max data size of the individual parameters? Is there any other alternative to send large data to POST method?
Thanks.