Hi,

I'm getting a:

org.apache.catalina.core.StandardContext start
SEVERE: Error filterStart

When inluding an HttpServletRequestWrapper in a filter.  The code compiles fine 
and the filter part causing the ruckus looks like this:

HttpServletRequestWrapper wrapper = new HttpServletRequestWrapper((HttpServletRequest)servletRequest) { public java.lang.String getParameter(java.lang.String name) { if ("foo".equals(name)) { return "bar"; } else { return super.getParameter(name); }
                           }
                        };
Thoughts?

Thanks,
- Ole









---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to