This content has been marked as final.
Show 1 reply
-
1. Re: Multiple instance of application up side by side
Dan Bracuk Mar 16, 2013 4:35 AM (in response to userCold9)It's not restricted to ColdFusion. It's a general thing with session variables and modern browswers and it's happened to us.
What happens is that when you start a session, and then open a new tab or new browser window (has to be the same type of browser), the new instance will inherit the session from the first one. Then both instances have the same session variables to use, and possibly change the values.
Therefore, store as little information in the session scope as you can. Authentication is fine. Anything else is risky.

