Oct 29, 2008
How many times have you been troubleshooting a dump or application, you look at the callstack and you see something that just doesn’t quite look right. Chances are the problem is that you don’t have correct symbols. For example, if you see something...
1 comments
Filed under: Debugging, ASP.NET, IIS, .NET
Sep 25, 2008
There are only a few things that can make a .NET process crash. The most common one is an Unhandled Exception getting raised. Another way that is can happen is by creating a GC Hole. What is a GC Hole So first a little background on what I...
1 comments
Filed under: Debugging, ASP.NET, IIS, .NET, Crash
Sep 17, 2008
I have talked about a bunch of commands used to troubleshoot a managed memory problem in the past and given some situations of using them like: High memory, CPU, or other performance problems with .NET High Memory continued - Datatables High Memory part...
1 comments
Filed under: Debugging, ASP.NET, IIS, .NET, High Memory
Sep 12, 2008
The debugger extension that we were working on getting out with the debugger package has hit some roadblocks and it looks like it isn't going to be shipping with the debugger anytime soon. We are looking to see if we can find an alternative method to...
2 comments
Filed under: Debugging, ASP.NET, IIS, .NET, SOS
Aug 25, 2008
I haven’t seen a whole of of issues around this as of yet, but now that 3.5 SP1 has released that may change. If you copy SOS.dll to another location and then load it out of that directory to troubleshoot dumps, you may start seeing problems. ...
1 comments
Filed under: Debugging, ASP.NET, IIS, .NET, SOS
Jul 24, 2008
So I wanted to get a read on how people design their web sites. My thinking is that there isn’t much time spent in planning for supportability. There are a lot of other concerns that take priority, What is more important – Design or Content...
2 comments
Filed under: Debugging, ASP.NET, IIS, .NET, Microsoft
Jul 23, 2008
The first time you run !DumpAllExceptions you will see it print out one full exception for each type of exception that is in the dump. This will include the message and the callstack of the exception. For example: Any time after that, if you run the same...
2 comments
Filed under: Debugging, ASP.NET, IIS, .NET, Exceptions
Jul 15, 2008
So I thought I would put all the information together in one place that I have been creating over the past few months. I’ll try to go through all the steps and the different things that you will need to use in order to track down a problem. Realizing...
3 comments
Filed under: Debugging, ASP.NET, IIS, .NET, SOS