Does java .invalidate(); destroy all sessions on a single user?
Imagine that a logout button has a session.invalidate(); code to invalidate the session. What will happens if i login on the same account with two different browser and i logout with just one? Will the session be invalidated for both browsers? What if i press on the "back" button from the browser i logged out. Will i be able to use the account in the browser where i did not clicked on logout or it will be disconnected from both browser?
Thanks in advance, Joe