We are using WebSphere (4.0.3/5.0) and I am trying to place my jsp's in
the /WEB-INF/jsp directory. I am able to access these jsp's using the
simple HTML href tag, but cannot using struts and trying to reach it
through a global forward.
My global forward looks like this:
<forward name="home" path="/WEB-INF/jsp/mainMenu.jsp" redirect="false"
contextRelative="true" />
And I am calling it from an Action class like:
return mapping.findForward("home");
I get the following error:
[2/7/03 11:32:04:583 CST] 5b6e2be3 WebGroup X Servlet Error:
I:\Precept\Peadoc\webApplication\WEB-INF\jsp\mainMenu.jsp(12,45)
JSPG0050E: Bad file argument to include:
org.apache.jasper.JasperException: JSPG0050E: Bad file argument to
include
Any help would be greatly appreciated.