Retain httpsession object between different browser windows
Hi everyone,
Does someone know if there is a way to keep the same httpsession object between different browser windows of the same application?
To be more specific, I want to open a jsp from another jsp page(that includes a <%@page session="true"%>
directive) by using a javascript call window.open()
and retain the same session object of the caller id.
However this does not happen.
Each window keeps a dinstinct sessionID.
Is there any idea how to resolve this?
Thanks

