Re: Filters and JSP

2011-04-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bill, On 4/14/2011 8:11 PM, Bill Davidson wrote: public MyResponseWrapper( HttpServletResponse response ) throws IOException { super(response); myOutputStream = new MyOutputStream(response);

Filters and JSP

2011-04-14 Thread Bill Davidson
Tomcat 6.0.29 I've written a response filter for my web app and it seems to work fine for servlets but not for JSP's. I public void doFilter( ServletRequest request, ServletResponse response, FilterChain chain ) throws IOException, ServletException { chain.doFilter(request, new