Hi:
I'm using Tomcat5.0.3 & Struts1.1, and i use the example LOGON.WAR, shipping with <<struts in Action>> .
My Struts-configure.xml is :
...........
<global-forwards>
<forward
name="welcome"
path="/Welcome.do"/>
</global-forwards>
<action-mappings>
<action
path="/Welcome.do"
type="org.apache.struts.actions.ForwardAction"
parameter="/pages/Welcome.jsp"/>
...........
</action-mappings>
</struts-config>
When i execute my application as
http://localhost:8080/logon and i got following error:
javax.servlet.ServletException: Cannot find global ActionForward for name welcome at org.apache.jasper.runtime.PageContextImpl. handlePageException(PageContextImpl.java:685)
at org.apache.jsp.index_jsp._jspService(index_jsp.java:65)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:136)
Why ???