JSF 2.0, Primefaces
I have a session based bean (Bean1) and the corresponding view that contains ajax calls to modify data on the fly. It's ideal, since it doesn't require page loads on non-ajax button submits.
However - I'm in a situation where they want to have multiple views open in the same browser and allow each to work on it's own (which would be more of a request scope). So one parameter would technically be "request". But - I want that AJAX functionality that the session view gave me. This parameter currently is, obviously because its session, shared across browsers. This is causing usability issues.
Is it possible to have a parameter that "acts" as a request parameter, instead of session? So each window is open to a session view, but the parameter is in "request" mode and is individually assigned to the windows.