Hi,
>I've written my own version of the SessionInterceptor and placed this with
>my application class files (com.myapp.uril.SessionInterceptor). I updated
>the server.xml file to point to my version of the class instead of Tomcats
>by updating the following:
>
> <RequestInterceptor
> className="com.myapp.util.SessionInterceptor"
> noCookies="false" />
>
Unless I'm mistaken you're going to need your class files in tomcat's lib directory,
or in your Java class path
before you start tomcat.
Anything in server.xml is server-wide, and must be available to Tomcat when you start
the server. Anything in
web.xml is context-wide, and must be available to the context when you first access it.
Twylite