tell me more icon State Saving in ADFT

Please ensure that you do the correct setting for the STATE_SAVING _METHOD in the web.xml file, before you deploy the application.

ADFT does not support client state saving. The javax.faces.STATE_SAVING_METHOD parameter in web.xml must be set to server (or, if this parameter is not set at all, the application must be deployed in a container that defaults to server state saving).

In certain instances, JDeveloper will automatically set the javax.faces.STATE_SAVING_METHOD parameter in web.xml to client, which ADFT does not support currently. In these instances, it is imperative that the web.xml file be manually modified to set this parameter to server instead.

If this is not done, the behavior of the relevant JSF page appears such that: no interaction that would normally return to the server is accepted; instead, the page will only refresh. For example, activating a button will always return focus to the first field on the page, and the page will remain unmodified.