Hi everybody,
I'm stuck. I have found the following URL
http://wiki.apache.org/myfaces/Custom_Navigation_Handler. The last part
(/view.jsp?objectId=#{view.objectId}) would solve my problem, but unfortunately
it doesn't work. MyFaces render this to the URL
http://localhost:8080/productPage.jsf?product_id=#{product.jsf
This is my navigation rule
<navigation-rule>
<from-view-id>*</from-view-id>
<navigation-case>
<from-outcome>order</from-outcome>
<to-view-id>/productPage.jsf?product_id=#{product.manufacturerPartNr}</to-view-id>
<redirect/>
</navigation-case>
</navigation-rule>
Does anybody know how I can get this example running on my environment?
Thanks a lot
Steffen