I am implementing a web application. I'm trying to send huge data from client side to server side by using js Ajax with POST method.
In the Ajax, I set the parameter, which is a big string containing over 30000 characters. It works fine both in IE9 and Chrome. But not work in Firefox.
Then I made a test, if I send the data length beyond about 6218 then FF wont work. I tried to add one more word in the parameter, then it did not work. It seems to be the data length issue.
But I tried o reproduce it in my local, I sent over 70000 characters, but FF WORKS! So right now, I do not what I should do and what the problem exactly is. Please help me.