Hello!
I'am new to MyFaces. I have written a simple program on jsf:
<h:form>
<h:inputText value="#{indexBean.name}"/>
<h:commandLink action="#{indexBean.submit}" value="Submit"/>
<h:outputText value="#{indexBean.processedName}"/>
</h:form>
and specify javax.faces.STATE_SAVING_METHOD=server in web.xml
But html code of the rendered page contains:
<input type="hidden" name="javax.faces.ViewState"
id="javax.faces.ViewState"
value="/0RL6JBt8cvqShFdUYKZJMFYhH3aK5oYI4toUZvNpTR+xCEIE1Uu9gLy21nZ6Z9tJC3z6WQ4pGdWJUwOkbTP+Q=="
/>
It looks like saving state on client, is it correct behavior or I'm
doing something wrong?
PS. I use MyFaces 1.2.6
Thank you,
Alexey