application pool recycling logs the people off
application pool recycling logs the people off
I see when application pool recycles in IIS7 in Win Server 2008 it logs out all the users from the application? Is this normal behavior, is there any we can prevent
users being logged off?JIM.H.
July 3rd, 2012 11:46am
IIS forum would be the best place to ask this question.
http://forums.iis.net/1041.aspxPress any key... What the ... Where's any key ?
This posting is provided "AS IS" with no warranties or guarantees and confers no rights.
About Me ?
Free Windows Admin Tool Kit Click here and download it now
July 3rd, 2012 12:17pm
Jim,
That behavior is actually by design based on the application being run. Any app that's storing user's state inside the process is going to take that type of hit as the process is torn down and restarted. In order to prevent the impact to the users of the
app it would need to use another mechanism (such as Database) to store session state. that way the app when it comes back up could pick up where it left off with the users. The development team should be able to find applicable MSDN groups for answering questions
on how if needed.
Thanks,
DougDoug Kentner
July 3rd, 2012 12:42pm
Hi Jim,
Thank you for the post.
Agree with Doung. You need to keep the website healthy and prevent application Pool Recycling.
http://blogs.msdn.com/b/david.wang/archive/2006/01/26/thoughts-on-application-pool-recycling-and-application-availability.aspx
If there are more inquiries on this issue, please feel free to let us know.
RegardsRick Tan
TechNet Community Support
Free Windows Admin Tool Kit Click here and download it now
July 4th, 2012 4:37am


