Kenny G. Dubuisson, Jr. typed the following on 09:05 20/12/2002 -0600
>Simple minded as I am, I still believe with everything I have that there
>MUST be a setting in Tomcat that controls how often new session ID's are
>generated.

This is a standard configuration in the web.xml file, use:

<session-config><session-timeout>60</session-timeout></session-config>

Make sure it's in the right place inside the web.xml file, 
after servlet-mappings.

You can also set it programmatically using HttpSession.setMaxInactiveInterval(),
which uses seconds rather than minutes.

Plus, check out the PersistentSessionManager, which can be used to get 
really long session timeouts by swapping idle sessions out to disk.

Kief


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

Reply via email to