I defined the following configuration:
index.jsp:
<logic:redirect forward="welcome"/>
struts-config.xml:
<global-forwards>
<forward name="welcome" path="/Welcome.do" />
</global-forwards>
<action-mappings>
<action path="/Welcome"
type="org.apache.struts.actions.ForwardAction"
parameter="pages/Welcome.jsp" />
</action-mappings>
welcome.jsp:
<tiles:insert definition="site.login.page" flush="true" />
When I run the application I have the error
javax.servlet.ServletException: Cannot create redirect URL:
java.net.MalformedURLException: Cannot retrive ActionForward named
welcome
I don't understand this error.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>