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!