I have a wizard based screen which allows user to go to next and previous pages. On back or next, I submit the page and save the forms in session using @SessionScoped Managed beans. Functionality works fine if I leave the NUMBER_OF_VIEWS_IN_SESSION to default as 20, but reducing it to below 10 stops the page flow (no error displayed). What is wrong here and How to optimize the size of NUMBER_OF_VIEWS_IN_SESSION?
<context-param>
<param-name>org.apache.myfaces.NUMBER_OF_VIEWS_IN_SESSION</param-name>
<param-value>1</param-value>
</context-param>
I am using MyFaces.