Post Archive for January 2006

Page 1 of 1 (4 items)

A More Complete Stack Trace when Debugging Assemblies in the GAC

Have you ever had the need to get line numbers from an exception stack trace for an assembly in the GAC? If you work with BizTalk Server the answer is likely yes. To debug Commerce Server pipeline components which I have traditionally put custom C# pipeline...

Exchange 2003 SP2 Install Fails because of MSXML

While building a new Exchange 2003 server I was installing Service Pack 2 and came across an interesting issue: Setup failed while installing sub-component Exchange ActiveSync with error code 0xC0070643 (please consult the installatoin logs for a detailed...

Exception Detail and Health Monitoring in ASP.NET 2.0

I really liked the original exception management block put out by Microsoft. The reason is because it included all the information relating to an exception - not just the Message property. It made production debugging a breeze. Now with ASP.NET 2.0 and...

Guid TryParse

I love the new TryParse methods in the .NET Framework 2.0. It's too bad that not all types have a TryParse method. There was a piece of feedback posted on MSDN about implementing one for Guid values. Here's one I threw together for Guid values...