I have a problem with passing parameters with h:link
<h:link id="partyname" outcome="memberlist" value="memberlist">
<f:param name="partyname" value="#{partyBean.currentparty.name}" />
</h:link>
but when i click on the link the url generated is simply the follow:
http://localhost:8080/DigitalStateSWProjectWeb/memberlist.xhtml;jsessionid=29a181ab1a3170496ca9b0200f52
The main problem is also that i am sure that
#{partyBean.currentparty.name}
is a correct code and it is generating the correct string.. I'd like that my generated URL is somethink like:
http://localhost:8080/DigitalStateSWProjectWeb/memberlist.xhtml?partyname=Yellow
Thanks in advance for your answers.