I am working on a Java web application which involves certain server side resources being allocated in a per session basis, and such allocation is marked as a session attribute. In order to facilitate a new feature, it is required to each page a different session, i.e. they shall not share the same session. Right now this has to be done by asking the user to explicitly create new session in their browsers or change its configuration. Is it possible to implemented with javascript or jQuery such that a new window is displayed with a different session every time? If javascript or jQuery cannot achieve such effect, any other alternative? The server side does not need to know the new session ID or anything related to it, and the primary client browser would be IE (version 8 or newer) so it does not matter if the solution is browser dependent.
All I am asking is to achieve the same effect as the following, without having the users actually do so: