My problem is when I'm trying to access a POST
Variable with request.getParameter("name")
, it works perfectly. But in some conditions, when a POST
request arrives at my application, I also need to get GET
Parameter from the Query String.
As far as I can see, with getParameter
, you can only access current request's parameters, but, as in my condition, as I said, I also need to fetch GET
Parameters inside doPost
method.
Is there a way to fetch GET
Parameters without parsing the Query String?