Tags: Debugging

Lab 15: Debug Diagnostics

IIS Benjamin Perkins

Setup Setup the CSharpGuitarBugs web site as described in Lab 1 and Lab 2. Download and install most recent version of Debug Diagnostics,from here. Also check debugdiag.com Instructions Debugging a process crash is a challenging activity. Although you know the exception type, the exceptions error message and you know the method that it is being […]

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 →

Why is my ASP.NET application recycling, restarting

ASP.NET Benjamin Perkins

When you are experiencing slowness with your ASP.NET application, one place to check is if the application is being recycled. If the application is being recycled over and over again, then sessions and application settings are lost and it has a pretty big impact on your users and customers. A place to begin your investigation […]

Read More →

Install Failed Request Tracing on IIS 8.5 Server Core

IIS Benjamin Perkins

To setup Failed Request Tracing on an IIS 8.5 Server Core server, follow these steps. Start PowerShell Install the Web-Http-Tracing Role, using Install-WindowsFeature Configure the rule via a Remote Management IIS connection How to configure an IIS Server Core server for remote management Start PowerShell When you login to a Service Core installation of Windows […]

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 →