Hi!
At the moment when no navigation case for an outcome is found
the navigationHandler decides to stay at the same view. I think
an option for web.xml would be useful to tell the navigationHandler
if no navigation case for an outcome is found, but the outcome
matches a viewId to navigate to this view id.
This idea was mainly driven by a lot of jsf-projects where I saw for each
view id:
<navigation-rule>
<from-view-id>*</from-view-id>
<navigation-case>
<from-outcome>viewId</from-outcome>
<to-view-id>/viewId.xhtml</to-view-id>
<redirect/>
</navigation-case>
...
which seems kind of unnecessary to me
what do you think about that?
regards
Ernst