Possibly I'm using the paradigm wrong, but since this is a fairly straightforward question, I want to check early. I have a simple navigation problem within a CRUDish application. I want to navigate from one page to another, carrying along the conversation context. I'm using parameter passing to handle the object identification, so an excerpt from pages.xml looks something like:
...
<page view-id="/division.xhtml">
<param name="divisionId" value="#{manageDivision.divisionId}" />
<navigation from-action="viewDepartment">
<redirect view-id="/department.xhtml" />
</navigation>
</page>
<page view-id="/department.xhtml">
<param name="departmentId" value="#{manageDepartment.departmentId}" />
</page>
...
I have similar problem. Is your parameter passed in URL, can you see it there?