https://issues.apache.org/bugzilla/show_bug.cgi?id=51773
Bug #: 51773
Summary: lost parameter value
Product: Tomcat 6
Version: 6.0.33
Platform: PC
Status: NEW
Severity: normal
Priority: P2
Component: Catalina
AssignedTo: [email protected]
ReportedBy: [email protected]
Classification: Unclassified
OS & tomcat 64bit
public class SetCharacterEncodingFilter implements Filter {
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain){
//fix bug
//request.getParameterMap();
request.setCharacterEncoding(encoding);
//if param test is one character
//testValue is ""
String testValue = request.getParameter("test");
chain.doFilter(request, response);
}
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]