Re: Disabling session management (FAQ not enough)

2003-09-22 Thread Greg Ward
On 20 September 2003, Chris Rolfe said: You might try: Manager classname=org.apache.catalina.session.StandardManager pathname= / Yep, I eventually found that in the O'Reilly Tomcat book. Turns out classname isn't even necessary, so this is a one-line-of-XML-per-context configuration

Re: Disabling session management (FAQ not enough)

2003-09-20 Thread Chris Rolfe
on 9/18/03 1:29 PM, Greg Ward wrote: I would like to completely disable Tomcat session management. I'm in Manager pathname=/dev/null / You might try: Manager classname=org.apache.catalina.session.StandardManager pathname= / Cheers, Chris

Disabling session management (FAQ not enough)

2003-09-18 Thread Greg Ward
I would like to completely disable Tomcat session management. I'm in the process of porting a legacy app with homebrew session management from JServ to Tomcat, and I want to keep using that homebrew session management for the time being. (I'm using Tomcat 4.1.24, JDK 1.4.0.) Currently, Tomcat's

Re: Disabling session management (FAQ not enough)

2003-09-18 Thread Greg Ward
On 18 September 2003, Greg Ward said: Surely someone has written a dummy session manager class that does nothing... OK, I took a crack at this. My first attempt at DummySessionManager looked like this: import org.apache.catalina.Manager; class DummySessionManager implements Manager {