Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated default sesstion timeout based on MD's findings.

To change the default session timeout (which is 30 300 minutes) you must edit the file web.xml. This file can be found in <YOUR DEPLOYMENT>/WEB-INF/web.xml.

...

Code Block
<web-app ...>
...
    <session-config>
        <session-timeout>30<timeout>300</session-timeout>
    </session-config>
...
</web-app>

...