You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Kal Govindu <Ka...@waterfield.com> on 2003/08/04 17:08:45 UTC

Persistent Sessions

I am trying to clean-up ( invalidate ) all the session when Tomcat is
restarted for any reason. I have the following Tag in my server.xml. The
session created for my web application still seem to persist, is there
another place or way the session is being store or persisted?

Please help, thanks in advance.
Kal

<Manager className="org.apache.catalina.session.PersistentManager"
              debug="0"
              saveOnRestart="false"
              maxActiveSessions="-1"
              minIdleSwap="-1"
              maxIdleSwap="-1"
              maxIdleBackup="-1">
                <Store
className="org.apache.catalina.session.FileStore"/>
          </Manager>