Is there a max size for POST parameter content?
- by l3dx
I'm troubleshooting a java app where XML is sent between two systems using HTTP POST and a servlet. I suspect that the problem is that the XML is growing way to big. Is it possible that this is the problem? Is there a limit?
When it doesn't work, the request.getParameter("message") on the consumer side will return null.
Both apps are running on…