Hi,
After your filter does its work it must pass the request on:
// Forward the request to the next resource in the chain
chain.doFilter(request, response);
Wes.
-----Original Message-----
From: Ron Reynolds [mailto:[EMAIL PROTECTED]
Sent: October 26, 2005 6:46 PM
To: [email protected]
Subject: RE: SAXParserException while using Servlet Filter
try adding this line:
> public void doFilter(ServletRequest arg0, ServletResponse arg1,
> FilterChain arg2) throws IOException, ServletException {
> System.out.println("====In Filter doFilter");
arg2.doFilter(arg0, arg1);
> }
basically your filter isn't passing the request forward.