Does anyone know of a way to get only POST parameters from an HttpServletRequest object?
IE, PHP has the $_POST superglobal and Perl\'s CGI.pm will only retrieve POS
Couldn't you just get the parameters from the HttpServletRequest within doPost or doGet in a subclass of HttpServlet?
HttpServlet
Anything you grab (via getParemeter) inside of doPost is a POST and anything inside of doGet is a GET.
getParemeter