Is there any way to forward from one webapp to another? By looking at the code of ActionServlet, the ActionMapping forward attribute is just appened to request.getContextPath(). This doesn't seem correct. Shouldn't you be able to forward from one webapp to another via struts? You can do it in Servlet2.2.
Given the following struts action mapping : <action path="/jumpPage" forward="/jumpWebApp/aJSP.jsp"></action> The final result in ActionServlet is a path = request.getContextPath() + "/jumpWebApp/aJSP.jsp"; Any suggestions out there? TIA Chris Bono [EMAIL PROTECTED] 512.531.8518 http://www.zilliant.com -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

