Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Have a lot of troubles on production server. Some routing cause crashing of Application Pool with event id 1011:

Event Type: Warning Event Source: W3SVC Event Category: None Event ID: 1011 Date: 1/21/2009 Time: 9:08:17 AM User: N/A Computer: xxxxxxxxxxxxx Description:

A process serving application pool 'DefaultAppPool' suffered a fatal communication error with the World Wide Web Publishing Service. The process id was '3788'. The data field contains the error number. 8007006d

I have a few very hard hours for me before I found a problem. Thanks to Tess Ferrandez and her blog post I found it.

Always double check Your multithreaded code in asp.net application. When Unhandled exceptions occurs application pool crashes and it's damn hard to find WHY.

share|improve this question
1  
Tess's blog is outstanding. We had a culprit clobbering one of our shared server shared app pools on IIS6, turned out to be that exact problem. The next problem was trying to get said customer to comprehend issue though :) – Kev Jan 24 '09 at 19:00

2 Answers

up vote 4 down vote accepted

Tess's blog was a little advanced for me. I had to search around for quite a bit before I found the right articles that helped me debug my dump files. This article will help others who want to debug their crashing asp.net application pools but don't know how to start.

share|improve this answer

Our company SharePoint site was keeps on crashing. When I looked at IIS, it was application pool keep on crashing whenever anyone opens the site. If we restart the site and try again going to the page, it crashes again. This is what I did to solve the problem... - I went to IIS - Application Pool - SharePoint Site Properties | Identity | Configurable - I removed the user name and password - Entered the user name and password again

I did this to all the SharePoint sites are in the application pool and it seem to solve the problem.

share|improve this answer
I don't see any mention of SharePoint in the question, so I'm thinking it's probably something different. – David Hogue Sep 23 '11 at 15:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.