We are developing an application in which we must support several browser tabs / windows. Our setup: MyFaces 2.1, Spring, Orchestra
By default, org.apache.myfaces.NUMBER_OF_VIEWS_IN_SESSION is set to 20. This means that if you open 21 tabs in the browser, the page on the first tab stops working - there is no view state for this view.
The same thing happens if you open 2 tabs and ask 21 to view updates (i.e. Ajax events) in the second tab. Then clicking on the first tab will throw the same exception.
Is there any way around this? For example, is it possible to bind the viewing cache to the conversation area?
Dan
source share