Hi!
We have begun seeing that getParameterValues returns each parameter twice.
logger.debug("getParameter: " + request.getParameter("xxx"));
logger.debug("getParameterValues: " +
Arrays.asList(request.getParameterValues("xxx")));
gives
DEBUG 21.09.2012 15:35:53:733 (LoginController.java:showForm:33) -
getParameter: aaa
DEBUG 21.09.2012 15:35:53:733 (LoginController.java:showForm:34) -
getParameterValues: [aaa, aaa]
for the querystring xxx=aaa
Any ideas to why? :)
I would have excpected that last line to show "[aaa]" instead of "[aaa, aaa]".
When running on Jetty we see "[aaa]".
We are running Resin 4.0.31.
-Kaj :)
_______________________________________________
resin-interest mailing list
[email protected]
http://maillist.caucho.com/mailman/listinfo/resin-interest