A
Aryeh M. Friedman
I have a situation where a servlet is passed an different session then the one it should be using (the one it should be using is passed as a var "id")how do I make it so the session the servlet (or jsp) uses is the one in the var and not in the passed session ideally I want something like this:
<%
session=SessionUtil.findSession(id);
%>
where SessionUtil is either prexisting or something I make my self.
Just in case people want to know the background see the other thread on JNLP sessions (I made it so I can pass the orginal session ID now but have no idea how to rejoin the two sessions)
<%
session=SessionUtil.findSession(id);
%>
where SessionUtil is either prexisting or something I make my self.
Just in case people want to know the background see the other thread on JNLP sessions (I made it so I can pass the orginal session ID now but have no idea how to rejoin the two sessions)