Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

The requested resource (Invalid path was requested) is not available.

843840Mar 11 2008 — edited Mar 12 2008
Hello

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>
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 9 2008
Added on Mar 11 2008
1 comment
421 views