Fórumok

How to Manage Session in liferay ??

piyush liferay, módosítva 11 év-val korábban

How to Manage Session in liferay ??

Junior Member Bejegyzések: 40 Csatlakozás dátuma: 2013.01.02. Legújabb bejegyzések
Can anybody tell me about the session management in liferay..

i am working on login - logout functionality so i am required such functionality so suggest me ....
thumbnail
Subhash Pavuskar, módosítva 11 év-val korábban

RE: How to Manage Session in liferay ??

Regular Member Bejegyzések: 234 Csatlakozás dátuma: 2012.03.13. Legújabb bejegyzések
Hi,

Pls refer this link !! hope it may help you Click here
piyush liferay, módosítva 11 év-val korábban

RE: How to Manage Session in liferay ??

Junior Member Bejegyzések: 40 Csatlakozás dátuma: 2013.01.02. Legújabb bejegyzések
but in this example doesn't show , how to destroy a session when logout from the page....
thumbnail
Apoorva Prakash, módosítva 11 év-val korábban

RE: How to Manage Session in liferay ??

Liferay Master Bejegyzések: 658 Csatlakozás dátuma: 2010.06.15. Legújabb bejegyzések
piyush liferay:
but in this example doesn't show , how to destroy a session when logout from the page....


Hi Piyush,

Basically, the following code is the key portion of logoutAction:

try {
	session.invalidate();
}catch (Exception e) {
	//ignored
}


Apart form this,3 cookies COMPANY_ID, ID and PASSWORD are also destroyed. You can see the exact Logout code here.

Hope This will help...

Thanks and Regards,
Apoorva Prakash