I got a page with h:commandButton button, and when clicking on this button, page navigation to another page, but some data on this page like requestId, etc. need to be passed to the next page, what would be the general way to pass the data to next page through h:commandButton ? I have tried f:setPropertyActionListener to assign data to the target, but it doesn't seem to be working. Thanks for help in adavnce. The code example for this is copied below:
<h:panelGrid columns="2">
<h:panelGrid columns="1">
<h:outputLabel value="requestId" styleClass="outputLabel"/>
<h:inputText value="#{dataRequestAction.requestId}" label="request Id" styleClass="inputText"/>
</h:panelGrid>
<h:commandButton action="#{dataProcessAction.process}" value="Process" styleClass="button">
</h:commandButton>
</h:panelGrid>