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
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 context2
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:///test/servlet/servlet1
The TOMCAT