Comparing current revision with historical revision 1.
From line 16 changed to line 16:
If you have a page that contains a form that the user may wait more than a day to submit, then you have a stateless view. In this case, you should make the form a regular JSF form and process the form result as though it were a GET request. You can either invoke a page action that processes the input before rendering or you can use Seam's bookmarkable command components (|<s:link>| or |<s:button>|) with an action. Page actions are the preferred approach.
If you have a page that contains a form that the user may wait more than a day to submit, then you have a stateless view. In this case, you should make the form a regular HTML form (not |<h:form>|) and process the form result as though it were a GET request. You can either invoke a page action that processes the input before rendering or you can use Seam's bookmarkable command components (|<s:link>| or |<s:button>|) with an action. Page actions are the preferred approach, although make sure your application is not vulnerable to [=>wiki://64678].