Details
-
New Feature
-
Status: Closed
-
Major
-
Resolution: Won't Fix
-
1.0.1
-
None
-
None
Description
I have a tricky problem in production with @ViewAccessScoped beans in conjunction with the lazy windowId dropping script
http://wiki.apache.org/myfaces/Drafts/WindowId
The problem arises if the user is on the browsers tabA (windowId=123) which has a @ViewAccessScoped bean and opens a link from this window in a new tabB.
In this case a request with the old windowId=123 will be sent to the server and the response will be rendered to tabB. When the dropWindowId script detects that tabB is a fresh browser tab, it will issue a new request and drops the windowId to get a new one (windowId=124 now for tabB)
The problem is that in step we get a request with the old windowId onto a new view, thus we drop the @ViewAccessScoped bean used in tabA.