I am using basic level authentication. and i need best logout code in JSP / servlet. I am using JSP & servlet and MS-ACCESS as backend.
Is it require a session creation in JSP?
please reply as soon as possible.
Thanking you.....
|
|
I am using basic level authentication. and i need best logout code in JSP / servlet. I am using JSP & servlet and MS-ACCESS as backend. Is it require a session creation in JSP? please reply as soon as possible. Thanking you.....
|
||
|
|
|
|
if you are wanting to "logout" of the application, try: request.getSession().invalidate(); |
||
|
|
|
|
request.getSession().invalidate(); will not work allowes... so 1 step after succesfull login time set a session session.setAttribute("loginstatus","true"); on logout set that value "false"; and for after login page include a authentication.jsp which allowes check the ststus of "loginstatus" session if it is false then it forward control to before login page....I think it will work... |
||
|