JSF page back to JSP page
Hello, I'd like to know if is there any way that a JSF command button can return to a JSP page?
I have a jsf page (xxxDetailList.jsp) which has a Return command button... The return command button should return to a jsp page (xxxCriteria.jsp). How am I supposed to do it? I tried defining a navigation rule in the faces-config.xml and it doesn't work. I always get a javax.servlet.ServletException:
at org.apache.struts.tiles.actions.TilesAction.execute(TilesAction.java:67) every time I click on the Return command button on the JSF page...
faces-config.xml
<navigation-rule>
<from-view-id>/xxxDetailList.jsp</from-view-id>
<navigation-case>
<from-outcome>returnList</from-outcome>
<to-view-id>/xxxCriteria.jsp</to-view-id>
</navigation-case>
</navigation-rule>

