I've read several examples but I am now confused.
I have a
servlet forwarding control to an
applet. Once that applet is complete, I want it to forward to another servlet but I don't know how to maintain the session. I'm trying include session information as a parameter from the servlet to the applet.
<APPLET code="UpdateChecker.class" codebase="<%=serverHomeURL%>actions/applet"
width="161" height="20">
<PARAM name="StatusURL"
value="<%=serverHomeURL%>actions/QueryTextStatus.jsp">
<PARAM name="ForwardURL" value="<%=serverHomeURL%>actions/result.jsp">
<PARAM name="refreshMS" value="1000">
<PARAM name="sessionID" value="<%=session.getId().toString()%>">
</APPLET>
So far, I have been able to send a
string for session.getID() and I've also created a cookie which has JSESSION123456....
When I'm forwarding control from the applet to the servlet, how do I send the session info?
Thanks
[ September 18, 2003: Message edited by: Chris Garrison11 ]