Is there a max size for POST parameter content?

Posted by l3dx on Stack Overflow See other posts from Stack Overflow or by l3dx
Published on 2010-05-31T12:22:36Z Indexed on 2010/05/31 12:33 UTC
Read the original article Hit count: 178

Filed under:
|

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 tomcat

© Stack Overflow or respective owner

Related posts about servlets

Related posts about http-post