-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);
> Outpu
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
My