Dispatching Request to Another Servlet Context

2003-07-15 Thread Paresh Joshi
Hi,
 
I want to forward a request from one servlet context to a JSP page in another 
servlet context. Both the applications are running on same tomcat. I would appreciate 
if any one can shed some light on how to do this. 
 
Thanks,
Paresh

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

RE: Dispatching Request to Another Servlet Context

2003-07-15 Thread Shapira, Yoav

Howdy,
ServletContext myContext = getServletContext();
ServletContext otherContext = myContext.getContext(/otherWebApp);
RequestDispatcher rd =
otherContext.getRequestDispatcher(/pathUnderOtherWebApp);
rd.forward(request, response);

RTFM.

Yoav Shapira
Millennium ChemInformatics


-Original Message-
From: Paresh Joshi [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 15, 2003 12:29 PM
To: Tomcat Users List
Subject: Dispatching Request to Another Servlet Context

   Hi,

   I want to forward a request from one servlet context to a JSP
page in
another servlet context. Both the applications are running on same
tomcat.
I would appreciate if any one can shed some light on how to do this.

   Thanks,
   Paresh




This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Dispatching Request to Another Servlet Context

2003-07-15 Thread Paresh Joshi
Hi, 
 
I am still stuck
myContext.getContext(/otherWebApp) is returning me a null object. I have changed the 
context setting in server.xml for myWebAPP and otherWebAPP as crossContext=true. 

Do I need to do something else?

Thanks,

Paresh


-Original Message- 
From: Shapira, Yoav [mailto:[EMAIL PROTECTED] 
Sent: Tue 7/15/2003 10:05 AM 
To: Tomcat Users List 
Cc: 
Subject: RE: Dispatching Request to Another Servlet Context




Howdy,
ServletContext myContext = getServletContext();
ServletContext otherContext = myContext.getContext(/otherWebApp);
RequestDispatcher rd =
otherContext.getRequestDispatcher(/pathUnderOtherWebApp);
rd.forward(request, response);

RTFM.

Yoav Shapira
Millennium ChemInformatics


-Original Message-
From: Paresh Joshi [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 15, 2003 12:29 PM
To: Tomcat Users List
Subject: Dispatching Request to Another Servlet Context

   Hi,

   I want to forward a request from one servlet context to a JSP
page in
another servlet context. Both the applications are running on same
tomcat.
I would appreciate if any one can shed some light on how to do this.

   Thanks,
   Paresh




This e-mail, including any attachments, is a confidential business 
communication, and may contain information that is confidential, proprietary and/or 
privileged.  This e-mail is intended only for the individual(s) to whom it is 
addressed, and may not be saved, copied, printed, disclosed or used by anyone else.  
If you are not the(an) intended recipient, please immediately delete this e-mail from 
your computer system and notify the sender.  Thank you.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]