On 11/13/06, Dave Roberts <[EMAIL PROTECTED]> wrote:
After an absurd amount of searching about, I have not been able to find a single reference on how to ensure that the cookies set by Tomcat expire 3 months after they're created (they currently expire sometime in 2019).
What cookies are you talking about? Session cookies or cookies explicitly set by the application?
I am aware of the session time out that can be set in web.xml... <session-config> <session-timeout>129600</session-timeout> </session-config>
These control the life of sessions on the server, which means that the longest it will keep track of an inactive session cookie is 129600 seconds. If the session remains active, it will keep the session alive indefinitely. These session cookies will also disappear if the client closes their browser.
...but this does not help.
Which implies that you may be talking about application created cookies? -Dave --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]