I am making a
JSF application where I have a page called result.jsp here I made a button which is link to an add page .
so I made like in result.jsp :
<h:commandButton id="addpage" action="addpage" value="#{message.add_button_text}" />
then at faces-config.xml I added like :
<navigation-rule>
<from-view-id>/pages/form.jsp</from-view-id>
<navigation-case>
<from-outcome>result</from-outcome>
<to-view-id>/pages/result.jsp</to-view-id>
</navigation-case>
</navigation-rule>
<navigation-rule>
<from-view-id>/pages/result.jsp</from-view-id>
<navigation-case>
<from-outcome>addpage</from-outcome>
<to-view-id>/pages/addpage.jsp</to-view-id>
</navigation-case>
</navigation-rule>
but on clicking the button no addpage is coming .