> myfaces-impl-1.1.3 instantiates
the request scope bean every request
> (like it suppose to), however
it doesn't retain any state information
> about the bean even though
t:saveState tag is specified.
Your bean code "snippet" doesn't list your class implementing
serializable. This is an old note from the MyFaces
FAQ:
You
can also save the whole bean. Example:
<x:saveState id="saveCalcForm" value="#{calcForm}"/>
The whole bean automatically is saved
and restored by MyFaces. To
be able to save and restore the value of a bean property or the bean itself, it
must implement one of the following:
the java.io.Serializable interface
the javax.faces.component.StateHolder
interface and a default constructor
Regards,
David

