Hi friends
can you please tell me how to do session management in logout process in AEM 6.5, i have a login credential now i want to make logout with session, please suggest me.
Thanks
Dhiraj Kumar
Solved! Go to Solution.
Views
Replies
Total Likes
You can look at Encapsulated Tokens [0]. For this, the users must pre-exist on all the publish instances, if this is not possible, then you should use sticky connections.
To close the session, you can use session.logout(), check [1].
You can look at Encapsulated Tokens [0]. For this, the users must pre-exist on all the publish instances, if this is not possible, then you should use sticky connections.
To close the session, you can use session.logout(), check [1].
Views
Replies
Total Likes
Hi @dhiraj85
To logout, you can use session.logout() method of JCR Session API. Refer https://www.programcreek.com/java-api-examples/?class=javax.jcr.Session&method=logout for eaxmples.
Hope it helps!
Thanks,
Nupur
Hi nupur
is this helpful in AEM?, because of i am new in AEM so i am getting confuse, it seem as java session management .
Views
Replies
Total Likes
Hi @dhiraj85
No it is of java session, we are talking here. This is JCR(Java content respository) session that is more specific to AEM as AEM repository is based on JCR implementation. If you are looking for a way to logout using backend then this reference given above can be used. Read more from https://docs.adobe.com/content/help/en/experience-manager-64/developing/platform/access-jcr.html and https://docs.adobe.com/content/docs/en/spec/jdiff-jcr1-jcr2/jcr-2.0/javax/jcr/Session.html
Views
Replies
Total Likes
Views
Replies
Total Likes
Assuming that you have the Session a valid non-null object, you can easily just call the logout method. Example Below:
if (session != null && session.isLive()) {
session.logout();
}
But it really depends on the context. How is the session obtained?
Hi,
can you please describe what you mean with "session logout" in more detail? The term "session" can describe a lowlevel implementation API, which does have a logout method. On the other hand side it can also mean the session of a user, which has authenticated against an AEM authoring instance and is working, until he logs out (and cannot visit the UI of that authoring instance until he logs in again).
Dependent on that the answer is quite different