The requested resource (Invalid path was requested) is not available.
843840Mar 11 2008 — edited Mar 12 2008Hello
I'm getting this error message after my form is validated and needs to be forwarded to the right page. I have all the forwards specified in my tiles-def but it still doesn't work. Could you please get me in the right direction.
Thanks
Below is mt tiles-def and struts-config:
Struts-config
<action
path="/login"
input="/welcome.jsp"
parameter="signin"
type="com.myapp.struts.Action.LoginAction"
name="loginForm"
scope="request"
validate="false">
<forward
name="failure" path="/welcome.do"/>
<forward
name="success" path="/loginSuccess.do"/>
</action>
tiles-defs
<definition name="loginSuccess.do" extends=".mainLayout">
<put name="title" value="Login" />
<put name="body" value="/tiles/loginSuccess.jsp" />
</definition>
<definition name="welcome" extends=".mainLayout">
<put name="title" value="Welcome" />
<put name="body" value="/tiles/welcome.jsp" />
</definition>