I'm using a Servlet accessible via POST request, but I've seen that parameters in POST, can be set either thanks to header parameters but also in a GET format way (/MyServlet?param1=123¶m2=456) and I would need to detect it on my Servlet.
I tried to retrieve the request by using
request.getRequestURI()
but I cannot see the parameters in that case... Do you know how can I retrieve the full path of the request in a GET parameter way ?