Re: Custom Request Subclass

2008-04-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chris, [EMAIL PROTECTED] wrote: | One possibility is to use a servlet filter to wrap the tomcat | instantiated request in your own request, which overrides the desired | method. I think you've got the wrong class, here, Chris. The configureSessionCo

RE: Custom Request Subclass

2008-04-21 Thread Chris.Wraith
One possibility is to use a servlet filter to wrap the tomcat instantiated request in your own request, which overrides the desired method. public class MyFilter implements javax.servlet.Filter { .. public void doFilter(ServletRequest request, ServletResponse response,