Reputation: 9597
Seam's documentation says that conversational state - see link last line - can be configured to be stored in the client browser as opposed to the servlet session. Can anyone tell me:
Upvotes: 2
Views: 418
Reputation: 33785
Dan Allen, Author of Seam in Action book and red hat Seam core developer, states
Since conversations are stored in the session, two requirements must be met:
As far as i know is that The JSF Tree can be stored in The client side, enabled through web.xml context param
<context-param>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>client</param-value>
</context-param>
But keep in mind bandwidth issues when using this kind of configuration
Upvotes: 1
Reputation: 24499
Are you sure you have read correctly? Could you point to the documentation that states that?
The only way I can see that seam can store anything on the client is through cookies. But Seam does not use anything else other than the user session, which you will get if you authenticate. (Also known as jsession id)
Upvotes: 1