David Rodríguez Fernández wrote: > Exists some way to to restart tomcat without loosing the session data? > Thanks
At least current versions of Tomcat will automatically save session data on shutdown and re-load it on the follwing startup. This is done by serializing the session data. So you have to make sure that data you add to the session object is also serializable or it will get lost. http://tomcat.apache.org/tomcat-5.5-doc/config/manager.html#Restart%20Persistence Regards mks --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]