Yes Chuck. I did note that as I have consulted the apache docs and
numerous other sources prior to resorting this list.
However, the issue is broader than PersistentManager and appears related
to all manager configurations made via the context.xml file.

For instance, if I configure the standard manager through context.xml, I
again note the configuration (specifically, the session timeout) is
ignored:

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

I get the following result from within my servlet:

System.out.println( "session expir duration: " +
session.getMaxInactiveInterval() );
System.out.println( "session :" + session.getClass());

session expir duration: 1800
session :class org.apache.catalina.session.StandardSessionFacade

-----Original Message-----
From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 06, 2007 4:45 PM
To: Tomcat Users List
Subject: RE: unable to change tomcat 5.5.20 session manager to
PersistentManager 

> From: Joe Lopilato [mailto:[EMAIL PROTECTED]
> Subject: unable to change tomcat 5.5.20 session manager to 
> PersistentManager
>  
> I am using tomcat version 5.5.20 and am having problems configuring a 
> persistent session manager.

You did note the following bolded, italicized line in the Tomcat doc for
the Persistent Manager, didn't you?

"WARNING - Use of this Manager implementation has not been thoroughly
tested, and should be considered experimental!"

http://tomcat.apache.org/tomcat-5.5-doc/config/manager.html

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe,
e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to