Hi all,
I recently want to use Ajax4jsf in Seam project, but after reviewing the ajax4jsf demo
example, I found that the web.xml in ajax4jsf use "server" value in the
javax.faces.STATE_SAVING_METHOD:
<context-param>
| <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
| <param-value>server</param-value>
| </context-param>
However, the Seam need to set it to client:
<context-param>
| <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
| <param-value>client</param-value>
| </context-param>
So I am confused. Did someone have any good direction? Thank you very much in advance.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3957043#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...