I just switch from Mojarra to Myfaces. Mostly not too much of a hassle but for the navigation rules not working as before. I'm have problems with redirect in the navigation case:
<navigation-case>
<from-outcome>test.edit</from-outcome>
<to-view-id>/test.xhtml</to-view-id>
<redirect/>
</navigation-case>
Any command link navigation such as below will result in a 403 error (access denied) :
<h:commandLink value="Add" id="test" action="test.edit"/>
In this particular case the browser has attempted to redirect to test.xhtml (not test.jsf). This is prevented by the security constraints in web.xml. Of course if you remove the security constraints you serve the raw xhtml.
If I remove the redirect it works just fine, but of course does not change the browser Url.
Also I used to be able to do navigation on void outcomes like:
<navigation-rule>
<from-view-id>/test.xhtml</from-view-id>
<navigation-case>
<from-action>#{bean.save}</from-action>
<if>#{true}</if>
<to-view-id>/list.xhtml</to-view-id>
<redirect/>
</navigation-case>
</navigation-rule>
However when an ajax request is sent to dynamically show a list (not calling the bean.save method) then the page is redirected.