My problem is that when I for example do this
<h:outputLink value="changeinfo.jsf">
Change name
<f:param name="change" value="name"/>
</h:outputLink>
then the requested url is
http://localhost:45054/WMC/user/changeinfo.jsf?change=name
My url pattern for the faces servlet look like this
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
Now on the changeinfo page
<f:verbatim rendered="#{'bean.param'} == 'name'">
NAME
<h:form id="form1">
...
</h:form>
</f:verbatim>
Then on the generated html page I only see the word NAME and not the form. Why is this?