I have a web site running IPlanet web server. I am using default authentication. I need to be able to logout user from the web page without closing the browser windows. Does anyone know how to do that from JSP/Servlet?
[This message has been edited by Aleksey Matiychenko (edited May 21, 2001).]
Yongping Wang
Ranch Hand
Joined: May 15, 2001
Posts: 40
posted
0
Hi, Use session attrubute in your servlets. Once a user attemps to log out, set the session.invalidate(). That's it. Good luck.