You can find that info here:
http://jakarta.apache.org/tomcat/tomcat-5.5-doc/config/manager.html

The easy way to disable saving of sessions is to add this to you webapp xml 
under conf/Catalina/localhost

<Manager className="org.apache.catalina.session.StandardManager" pathname=""/>

For example, here's the start of mine:
<?xml version="1.0" encoding="utf-8"?>
<Context docBase="bazaar" path="/bazaar" 
workDir="work\Catalina\localhost\bazaar">
  <Manager className="org.apache.catalina.session.StandardManager" pathname=""/>

-----Original Message-----
From: Mark [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 15, 2005 1:45 PM
To: [email protected]
Subject: where serialized session objects stored?


Hi,

How can I find out where session serialized objects get stored and
how can I force _not_ to load session serialized objects ( I need it
when a new version of web application get deployed)


                
__________________________________ 
Do you Yahoo!? 
Yahoo! Small Business - Try our new resources site!
http://smallbusiness.yahoo.com/resources/ 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to