asp.net - How do I crash the App Pool? -


Our asp.net 2 web application handles exceptions very well, we catch exceptions in Global ASAX in Application_Error. From there we log exceptions and we show a friendly message to the user. However, this morning we have appointed the latest version of our site. It was fine for half an hour, but then the app pool crashed. The site was not returned when we had not restored the previous release.

How can I make an AP Pool Accident and leave the normal exception handler? I am trying to repeat this problem, but there is no luck yet.


Update : We found the solution that one of our pages was screenreading one more page. But the URL was configured incorrectly and the pages ended with screen capping self infinitely, thus creating a stack overflow exception.

The most common error I have seen and call the "pool accident" is the loop.

  public string sMyText {get {return sMyText;} set {sMyText = value;}}  

Just call syytext ...


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -