Random application restarts
-
Dear CPians, I have been experiencing random ASP.NET (C#) application restarts. My web application is a community web site that has 500-800 users signed in at the same time. Some times (random), the application restarts and I cannot find the reason. After some research on Google I found that this could be due to: 1) application recompilation due to file or dll changes. (does not apply in my case) 2) idle time (does not apply in my case) 3) insuficient memory. (to be honest, not sure if this applies. The server is very good and monitors show that the memory is enough) Have you ever had similar behaviour on your applications? If yes how did you solve the problem? Thanking you all in advance. theJazzyBrain
Excellence is not an act, but a habit!
Aristotle
-- modified at 5:14 Friday 27th January, 2006
-
Dear CPians, I have been experiencing random ASP.NET (C#) application restarts. My web application is a community web site that has 500-800 users signed in at the same time. Some times (random), the application restarts and I cannot find the reason. After some research on Google I found that this could be due to: 1) application recompilation due to file or dll changes. (does not apply in my case) 2) idle time (does not apply in my case) 3) insuficient memory. (to be honest, not sure if this applies. The server is very good and monitors show that the memory is enough) Have you ever had similar behaviour on your applications? If yes how did you solve the problem? Thanking you all in advance. theJazzyBrain
Excellence is not an act, but a habit!
Aristotle
-- modified at 5:14 Friday 27th January, 2006
-
Dear CPians, I have been experiencing random ASP.NET (C#) application restarts. My web application is a community web site that has 500-800 users signed in at the same time. Some times (random), the application restarts and I cannot find the reason. After some research on Google I found that this could be due to: 1) application recompilation due to file or dll changes. (does not apply in my case) 2) idle time (does not apply in my case) 3) insuficient memory. (to be honest, not sure if this applies. The server is very good and monitors show that the memory is enough) Have you ever had similar behaviour on your applications? If yes how did you solve the problem? Thanking you all in advance. theJazzyBrain
Excellence is not an act, but a habit!
Aristotle
-- modified at 5:14 Friday 27th January, 2006
There are two things I have experienced that caused restarts with ASP.NET First one was anti-virus software accessing the web.config file, which caused the app to restart killing all sessions. Another one, All over an application of mine I built a while back I was storing information in cookies, client-side using javascript to keep state of some collapsible panel controls. Users were able to use the website but where randomly logged out, I disabled this feature and the problem went away. -- modified at 11:58 Friday 27th January, 2006