Reputation: 789
I am working on a JSF 1.2 application. Consider the following use case with a browser with 2 tabs:
How can I restrict the login to the current tab instead of all tabs? In other words, how can I restrict the HTTP session to one tab instead of all tabs of the browser instance?
Upvotes: 1
Views: 475
Reputation: 4579
Try to use the Private Tab. This will do the trick.
The private tab does not hold cookies. So it's a new session cookie for each tab.
NEW:
Another approach is disabling the cookies for your browser.
Upvotes: 1
Reputation: 10239
Simply use 2 different browsers (like chrome and firefox)
If you're using FireFox install the MultiFox plugin
Upvotes: 0