Session Timeout After User Inactivity
Posted: Mon Sep 16, 2019 6:45 pm
Hello!
I would like to force the user to login again on "User Inactivity" for x minutes
I followed the tutorial:
http://doc.sibvisions.com/applications/timeouts_vaadin
And added the lines like this:
But it didnĀ“t work...what am i doing wrong?
Thank You
I would like to force the user to login again on "User Inactivity" for x minutes
I followed the tutorial:
http://doc.sibvisions.com/applications/timeouts_vaadin
And added the lines like this:
- Code: Select all
<!--
**************************************************************************
WebUI configuration
**************************************************************************
-->
<servlet>
<servlet-name>VaadinUI</servlet-name>
<servlet-class>com.sibvisions.rad.ui.vaadin.server.VaadinServlet</servlet-class>
<init-param> <!-- BEGIN Add -->
<param-name>Application.connection.timeout</param-name>
<!-- 1 minutes -->
<param-value>1</param-value>
</init-param> <!-- END Add -->
...
But it didnĀ“t work...what am i doing wrong?
Thank You