I have a login in the main layout of my application, as described by David Lady in this video: http://notesin9.com/index.php/2012/03/09/notesin9-049-xpages-login-and-logout/
Everything works fine except for the exit link. Link Code:
facesContext.getExternalContext().getRequest().getContextPath() + "?Logout&redirectTo=" + facesContext.getExternalContext().getRequest().getContextPath()
When it clicks, I log out and return to the home page, and that's fine. But then, if I refresh or click on another page, I immediately go back without a password. Is it because a session is saved on the server that is not cleared? How can I change this so that after logging out, someone has to go through the full login process again before logging in?
source share