vote up 0 vote down star

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.....

flag

0% accept rate

2 Answers

vote up 1 vote down

if you are wanting to "logout" of the application, try:

request.getSession().invalidate();

link|flag
vote up 0 vote down

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...

link|flag
Huh? Why would it not work? Is the login information stored beyond the scope of the session? That would have caused other (and more serious) problems. – BalusC Nov 26 at 14:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.