How can I change the Session timeout?
Version 1.1 by Vincent Massol on 2011/12/21
The Session is controlled by the Servlet Container, not by XWiki. Usually the default timeout is set to 30 minutes.
So just configure your web.xml file with the Session timeout you wish to use.
For example:
...
</servlet-mapping>
<session-config>
<session-timeout>30</session-timeout>
</session-config>
...
</servlet-mapping>
<session-config>
<session-timeout>30</session-timeout>
</session-config>
...