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!

Error: Unable to find matching navigation case

839824Jul 19 2011 — edited Jul 20 2011
Hi all, after I wrote this thread:

2254970


I do some step forward and now the application returns this error:

Unable to find matching navigation case with from-view-id '/include.xhtml' for action '#{stiliPortaleController.prepareEdit}' with outcome 'logic.action(WEB-INF/jspf/stiliPortale/Edit.xhtml)'


Can some one help me?
The include.xhtml is on "web root" and the second page "Edit.xhtml" is on WEB-INF/jspf/stiliPortale/Edit.xhtml... the strange thing (for me that I'm newbie) is that I have these two method:

public String include_page(){
String value="WEB-INF/jspf/stiliPortale/List.xhtml";
setPageIncluded(value);

return "include";
}
public String action(String value)
{
setPageIncluded(value);

return "include";
}

and the first method works properly the second nope!
The difference is that the first method is called in a JSF page, the second in a managed bean!
What shoud I do?
Thank you for your help!
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 17 2011
Added on Jul 19 2011
2 comments
1,536 views