hi there,
on a
servlet I've got an action which invalidates the user session
request.getSession().invalidate();
on an included
jsp fragment, I've got the following code which simple tells me what's the user role (if he has it).
The first time I call the servlet the jsp page still shows me that the user is looged in, but if I call it again, then it correctly shows the user is not authenticated.
I'm pretty sure that the servlet does its job, because If I call the protected resources it asks me again to log me in. It actually looks like the jsp page needs a refresh.
Any suggestions?
Thanks in advance.