| Author |
Cross Context in Tomcat
|
sam prochazka
Greenhorn
Joined: Dec 14, 2002
Posts: 3
|
|
Hi, My server.xml is as follows: <Host name="localhost" debug="0" appBase="c:/RealPageMaker/webapps" unpackWARs="false"> <Context path="" docBase="webapp1" debug="0" crossContext="true"/> <Context path="/webapp2" docBase="webapp2" debug="0" crossContext="true"/> </Host> The .jsp code in webapp1 is as follows: <% ServletContext thatctx= application.getContext("/webapp2"); RequestDispatcher rdpt=thatctx.getRequestDispatcher("/test.jsp"); rdpt.forward(request, response); %> This does not work, but the following does (with an HTML page): <% ServletContext thatctx= application.getContext("/webapp2"); RequestDispatcher rdpt=thatctx.getRequestDispatcher("/test.htm"); rdpt.forward(request, response); %> What am I doing wrong? Is this a tomat bug? Has anyone got this working with tomcat 4.1.12? Sam P.
|
 |
Kyle Brown
author
Ranch Hand
Joined: Aug 10, 2001
Posts: 3879
|
|
This is NOT a web services question. This is getting moved to the Tomcat forum. Kyle
|
Kyle Brown, Author of Persistence in the Enterprise and Enterprise Java Programming with IBM Websphere, 2nd Edition
See my homepage at http://www.kyle-brown.com/ for other WebSphere information.
|
 |
Subrmaniam Narayanan Iyer
Greenhorn
Joined: May 28, 2004
Posts: 1
|
|
Hi, In the server.xml of tomcat, u got a context tag. Context tag takes an attribute cross-context, default it is set to false. Probably if u set it to true, it will work. Hope it works.
|
 |
 |
|
|
subject: Cross Context in Tomcat
|
|
|