I am looking for a way to to return a JavaObjects, which is saved in a Http Session, to an Applet. I am using JSP, so I am able to return Objects in the session by:
<%request.getAttribute("Object")%>;
So now I would like to return this Object to an applets Method with
document.applet.method(<%=request.getAttribute("Object")%>);
But this isn't working at all. Is there any solution for this?