0

We have two different web applications hosted on same box belonging to same application pool.

We have used lot of session variables in both of these web applications using inproc. Most of these session variables have same name.

Lets say App 1 has variable called Session["Name"], it gets genuinely cleared due to code some logic.

Will it also clear the value of session variable value with same name in App 2 as well ?

We are seeing users being thrown out to login page all of sudden in middle of page operations.

Does Session.Abandon() or Session.System.Web.HttpContext.Current.Session.RemoveAll() will throw users out in such fashion ?

We have app recycle set to specific time interval i.e. at night.

1 Answer 1

0

According to this SO question,

They will share session data if they are in the same app pool and the session mode is set to inproc.

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.