I develop an GWT applicationwith HTTP basic login type.
I have a "Logout" button that calls a server side method logout()
public void logout() {
getThreadLocalRequest().getSession().invalidate();
}
after the call it executes
Cookies.removeCookie("JSESSIONID");
Window.Location.reload();
in order to reload the page and get a browser's login screen.
But when the page reloads, I'm still logged in. Why ?