How to clear session in JSP?
800295Mar 15 2007 — edited Mar 16 2007I searched yahoo, and found that it seemed not easy to force invalid the session using jsp, compared to php just three lines:
session_start();
session_unset();
session_destroy();
How to acheive this using JSP? Must I follow these (quite complex) steps like this one?
http://sdc.sun.co.jp/javasystem/technote/cluster/jsp.html
Any simplier method?
Thx.