On Wed, 13 Nov 2002, Kris Schneider wrote:
> [snip] > > I did a couple of quick experiments with TC 4.1.14 and > ServletRequest.getParameterMap only seemed to work with HTTP GET, not > HTTP POST. Is your expectation that it *should* work with POST? > It should definitely work on a POST, but only if your request meets all the requirements so that the body content will be parsed by *any* of the getParameter family of methods. Specifically: * Request protocol is "http" or "https" * HTTP method is "POST" * Content type is "application/x-www-form-urlencoded" If your request looks like that, and you still don't get the parameter values, please file a bug against Tomcat -- ideally with a test case attached. http://nagoya.apache.org/bugzilla/ Craig -- To unsubscribe, e-mail: <mailto:struts-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>