Persistent HTTP session cookies

2006-05-01 Thread Paul Sideleau
I am in progress of moving an old legacy based web application for internal use from Sun Java System Web Server to tomcat. We currently have a Sun Java System Web Server specific setting that allows the JSESSIONID cookie to be persisted to their machine for a day. This allows internal users to

Re: Persistent HTTP session cookies

2006-05-01 Thread Leon Rosenberg
I doubt that tomcat support this kind of session cookies. However, you could configure tomcat to have session timeout about 24h (or whatever you need) and in your servlet/filter/action overwrite JSESSIONID Cookie with a persistent cookie. I think it should work equally well. regards Leon On