On 17/03/2011 08:55, André Warnier wrote: > From the fairly explicit > error messages below, it looks like you are trying to *modify* the > received form parameters Map, which under Tomcat's interpretation of > HTTP request handling is a no-no. (The Servlet Spec 3.0 does not > explicitly say so (Chapter 3), but strongly hints in that direction > (there are only "get" methods, no "set" ones).
Actually this is defined in the Servlet spec, but only in the Javadoc. Including key information only in the Javadoc is something that regularly drives me nuts with the Servlet spec. The relevant info is in the Javadoc for ServletRequest#getParameterMap(). It states quite clearly that the parameter map is immutable. If this worked in WebSphere then WebSphere is not following the specification. Either because of a bug or because it has been explicitly configured to ignore that part of the spec. Mark --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org