We have an application which is built on JSF 2.0(MyFaces) and runs on Weblogic app server. We are facing an issue regarding http Session.
Issue: Suppose I have opened the app in two different IE windows and give some search input in first window. The search result data received in first window is being shared in second window's session.
Note: . The beans are session
scoped and javax.faces.STATE_SAVING_METHOD
is server
. There's no problem of static
variable being shared.
Any idea why is this happening, and a solution to prevent this if any ?
Regards, Shaj.