Hi,
I setup my Session time out.
<session-config>
<session-timeout>11520</session-timeout>
</session-config>
Each time when I close the browser and open it again by calling the servlet, I see that new session is created. It can be seen from SessionCreated method executed in HttpSessionListener each time when browser reopened.
I'm new in tomcat/Java, but if I were working in ASP.NET environment, I would work around it be setting cookie with the same name as session name.
What is the best practice to work around it in Tomcat?
thank you in advance.
Danny.