Foros de discusión

Session timeout in liferay6.1

thumbnail
sujay paul, modificado hace 11 años.

Session timeout in liferay6.1

Regular Member Mensajes: 164 Fecha de incorporación: 28/10/11 Mensajes recientes
Hi
I want to show the session time after login.
I had add this 2 lines in portal-ext.properties
session.timeout=4
session.timeout.warning=4
but its not showing
Please help.
thumbnail
Jignesh Vachhani, modificado hace 11 años.

RE: Session timeout in liferay6.1

Liferay Master Mensajes: 803 Fecha de incorporación: 10/03/08 Mensajes recientes
You can modify session timeout option from web.xml of tomcat.
Change the time setting in below tag:
<session-config> <session-timeout>30</session-timeout> </session-config>
thumbnail
sujay paul, modificado hace 11 años.

RE: Session timeout in liferay6.1

Regular Member Mensajes: 164 Fecha de incorporación: 28/10/11 Mensajes recientes
thanks for reply

But how to show it to logged in user ?
thumbnail
Jignesh Vachhani, modificado hace 11 años.

RE: Session timeout in liferay6.1

Liferay Master Mensajes: 803 Fecha de incorporación: 10/03/08 Mensajes recientes
sujay paul:
thanks for reply

But how to show it to logged in user ?

Ohh sorry that was my misunderstanding.

Actually to showing only timeout duration, you can read property value from portal-ext.properties file.
session.timeout

try to get it using PropsUtil.get("session.timeout") ;
thumbnail
sujay paul, modificado hace 11 años.

RE: Session timeout in liferay6.1

Regular Member Mensajes: 164 Fecha de incorporación: 28/10/11 Mensajes recientes
Is it possible to show the time out duration in status bar?