destroy « Session « JSF Q&A





1. context destroyed, but ths session is still open    stackoverflow.com

I'm new to jsf and I've read that a session can be destroyed

FacesContext fc = FacesContext.getCurrentInstance();
HttpSession session = (HttpSession) fc.getExternalContext().getSession(false);      

fc.getExternalContext().getSessionMap().clear();

session.invalidate();
My problem ist, after doing ...

2. Destroying specific user session in JSF    stackoverflow.com

In my page I have administrative panel for managing users.
Assume I delete or block any user and this user is already logged into my webpage. How can I destroy his/her session? Users log ...

3. session destroyed navigational issue    coderanch.com