1 Reply Latest reply on Dec 10, 2002 5:00 PM by joelvogt

    What is the timeout period for the web session??

    tbauer

      I see that the server places a cookie called JSESSION(?) to track my session id...

      What is the default life of the session, and can I change it somewhere??

      thanks so much,

      tb

        • 1. Re: What is the timeout period for the web session??
          joelvogt

          default life will depend on which servlet container you are using. Generally it seems to be about 15mins. You can change this in your web.xml via something like

          <session-config>
          <session-timeout>45</session-timeout>
          </session-config>

          Just above your welcome file list and below servlet mappings. (note this is 45 mins)