K
Keith Patrick
I have an app (A) that has a link to another (B) app that it spawns in a new
window. The new window has a link back to app A, opening a third window
(let's call it A2). The problem is, I need A2 to act like the same user
logged into a clean browser window to app A such that it has a new Session
rather than sharing the same one among the 3 windows. Customer requirement
that it works that way, so I have no other choice but to come up with a way
to programmatically, upon login ensure that the current Session is a new one
and not the shared one. Session.Abandon doesn't work because a new session
is not created automatically, but I can't figure out how to create a new
session in code, as HttpSessionState has no public ctor. *Any* ideas of a
way around this (yes, I know the behavior is by design, but no, I have no
chance of having the requirement changed)
window. The new window has a link back to app A, opening a third window
(let's call it A2). The problem is, I need A2 to act like the same user
logged into a clean browser window to app A such that it has a new Session
rather than sharing the same one among the 3 windows. Customer requirement
that it works that way, so I have no other choice but to come up with a way
to programmatically, upon login ensure that the current Session is a new one
and not the shared one. Session.Abandon doesn't work because a new session
is not created automatically, but I can't figure out how to create a new
session in code, as HttpSessionState has no public ctor. *Any* ideas of a
way around this (yes, I know the behavior is by design, but no, I have no
chance of having the requirement changed)