RE: java.rmi.UnmarshalException

2001-05-28 Thread Bartsch Axel
Hi, Have you also copied the class ..._skel.class into that directory? And secondly the classes STUB and SKEL have to correspond on the server and client side! Axel Lannion/France -Original Message- From: Kleegrewe Christian [SMTP:[EMAIL PROTECTED]] Sent: vendredi 25 mai 2001

sessions across ServletContexts

2001-05-22 Thread Bartsch Axel
Hi, I am using TOMCAT 3.3 together with Apache (mode JK). I have defined 2 servlet contexts (two directories below webapps) with one TOMCAT instance. Now a user logs in at a servlet within context1 and a HttpSession object is created. Then this request is forwarded to a servlet within

forward a request from servlet1 in TOMCAT1 to a servlet2 in TOMCAT2

2001-05-18 Thread Bartsch Axel
Hi, I am using TOMCAT 3.3 and the following code within servlet1 to forward a request String url; ServletContext sc = getServletContext(); RequestDispatcher rd = sc.getRequestDispatcher(url); rd.forward(request,response); servlet1 is called as follows: http://IP-adress/test/servlet/servlet1