Fórumok

Session Expiry Event

thumbnail
MANOVINAYAK AYYAPPAN, módosítva 12 év-val korábban

Session Expiry Event

Regular Member Bejegyzések: 131 Csatlakozás dátuma: 2011.06.13. Legújabb bejegyzések
Hi All,


I am looking for a Liferay event that gets triggered when User Session times Out. On Session Time Out I would like to do some operation.

My Objective is to detect Session Timeout and perform some action.

Please help me in this regard.


Regards,
Mano
thumbnail
Sandeep Nair, módosítva 12 év-val korábban

RE: Session Expiry Event

Liferay Legend Bejegyzések: 1744 Csatlakozás dátuma: 2008.11.06. Legújabb bejegyzések
Hi,

I have never tried this but try creating session destroy event hook. In the hook add the follwoing in portal.properties. It is same as service pre event.

#
# Servlet session destroy event
#
servlet.session.destroy.events=com.test.YourSessionExpiryAction

Regards,
Sandeep
thumbnail
MANOVINAYAK AYYAPPAN, módosítva 12 év-val korábban

RE: Session Expiry Event

Regular Member Bejegyzések: 131 Csatlakozás dátuma: 2011.06.13. Legújabb bejegyzések
Hi Sandeep,

Thanks a lot emoticon !!

I will try this one and let you know soonemoticon!!


Regards,
Mano
thumbnail
Sandeep Nair, módosítva 12 év-val korábban

RE: Session Expiry Event

Liferay Legend Bejegyzések: 1744 Csatlakozás dátuma: 2008.11.06. Legújabb bejegyzések
Hi,

Sorry forgot to tell, just make sure you extend SessionAction

Regards,
Sandeep
thumbnail
MANOVINAYAK AYYAPPAN, módosítva 12 év-val korábban

RE: Session Expiry Event

Regular Member Bejegyzések: 131 Csatlakozás dátuma: 2011.06.13. Legújabb bejegyzések
Hi Sandeep,

Thanks a lot this works fine emoticon. I was able to trigger the custom event and perform my custom action before the session expiry.

Thanks a lot emoticon !!!

Thanks and Regards,
Mano
thumbnail
Vishal Panchal, módosítva 11 év-val korábban

RE: Session Expiry Event

Expert Bejegyzések: 289 Csatlakozás dátuma: 2012.05.20. Legújabb bejegyzések
Sandeep Nair:
Hi,

Sorry forgot to tell, just make sure you extend SessionAction

Regards,
Sandeep


Hi Sandeep,

Thanks for your contribution it worked for me.

Thanks,
Vishal
Advait Trivedi, módosítva 9 év-val korábban

RE: Session Expiry Event

Junior Member Bejegyzések: 56 Csatlakozás dátuma: 2010.03.30. Legújabb bejegyzések
Hi Sandip,
servlet.session.destroy.events is called when user logs out using logout link and also when session is destroyed by a time out event.
I want to perform some custom action only when the session times out, and not when session is destroyed because of user explicitly logging out.
Is it possible in liferay?

Thanks,
Advait
hung park, módosítva 7 év-val korábban

RE: Session Expiry Event

New Member Bejegyzések: 3 Csatlakozás dátuma: 2016.06.03. Legújabb bejegyzések
Hi Advait,

Were you able to find a way to resolve this issue? I am also having same case where both session destroyed is called when user clicks log out.

Thank you,
Hung Park

Advait Trivedi:
Hi Sandip,
servlet.session.destroy.events is called when user logs out using logout link and also when session is destroyed by a time out event.
I want to perform some custom action only when the session times out, and not when session is destroyed because of user explicitly logging out.
Is it possible in liferay?

Thanks,
Advait
Vivek Mehta, módosítva 4 év-val korábban

RE: Session Expiry Event

Junior Member Bejegyzések: 48 Csatlakozás dátuma: 2019.04.07. Legújabb bejegyzések
Hi Hung,

For this, You can make use of a global boolean variable let say "isLogout"  and set it to "true" in the logout action class. Now, in the session expiry class ;perform all your actions inside the  " if( ! isLogout )  { } " . This way you can perform operations only after session expiry and not by user log out.