I have a weird problem using POST method.
I use the POST method in a form within a Jsp and none of the parameters pass. request.getMethod() returns "POST" but getParameter() always return 'null'.
Things worth mention:
- I'm using Jdev 10.1.3
- When i switch to GET method it work perfectly.
- All servlets in my application suffer from this issue
- All servlets are overriding the 'service' method only
- There is no error / exception ...
Maybe there is a configuration that can block the use of POST?
Thanks!!