]
RH Bugzilla Integration updated JBWEB-314:
------------------------------------------
Bugzilla References:
FormAuthenticator duplicates original request GET parameters
------------------------------------------------------------
Key: JBWEB-314
URL:
https://issues.jboss.org/browse/JBWEB-314
Project: JBoss Web
Issue Type: Bug
Reporter: Dominik Pospisil
Assignee: Remy Maucherat
Attachments: FormAuthenticator.diff
The FormAuthenticator duplicates original request GET parameters. This is a regression
since rev. 2320.
The FormAuth does saved.addParameter(name, val) which results in parameter value stored
twice.
request.getParameter(String name) retutns the original value which is fine
but request.getParameterValues(String name) returns String[] {val,val} incorrectly.