Search Results for: auto heal

Lab 6: Using HTTP, W3SVC, WAS and W3WP

IIS Benjamin Perkins

There is a lot going on when a client makes an HTTP request to IIS. There are numerous kernel mode and native mode components that are used to route the request to the W3WP process which ultimately responds to the request. Figure 1, Using HTTP, W3SVC, WAS and W3WP See Table 1 for a list […]

Read More →

Lab 4: Install and configure Failed Request Tracing

IIS Benjamin Perkins

I have written an article here that explains how to install and configure Failed Request Tracing. Please use that for reference. In this lab you will: Install the Failed Request Tracing (Tracing) role Configure Failed Request Tracing Capture and review the Failed Request Trace If you have not completed the previous labs, specifically Lab 2, […]

Read More →

What does Connection_Dropped_List_Full mean

IIS Benjamin Perkins

When you look in the HTTP Error log (c:\Windows\System32\LogFiles\HTTPERR) and see a lot of Connection_Dropped_List_Full error reasons logged, it means that the client has dropped the connection so many times, in a short period, that the log in which the dropped connections are stored has become full. You might also see numerous 200.0.64 HTTP Status […]

Read More →

Troubleshooting badly behaving IIS application pools

WinDbg Benjamin Perkins

There are many reasons why an application pools’ worker process (W3WP.exe) could be behaving badly. The best approach is to capture some memory dumps during the problem situation and then analyze them. The problem with that is the root cause is not always obvious, even after many hours of analysis and investigation. An alternative to […]

Read More →

Recycling a worker process due to deadlock

IIS Benjamin Perkins

There are many reasons why an IIS worker process can hang. For example, a long running SQL query, searching through a Dictionary object, a non-optimal Regex command, hitting the limits of the process model configuration, etc… can all cause performance to slow. Previously, I wrote a blog about using the !dtc command in WinDbg. This […]

Read More →