5 Replies Latest reply on Jul 17, 2006 7:49 PM by gavin.king

    Seam + Ajax4jsf

    gus888

      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.