JAAS and logout
619407Apr 3 2008 — edited Apr 3 2008Is this code enough to logout
ExternalContext ectx = FacesContext.getCurrentInstance().getExternalContext();
HttpSession session = (HttpSession)ectx.getSession(false);
session.invalidate();
I am assuming that the invalidate() call will trigger a call to the logout() method of the JAAS login module by the container.
Pranab