Recent Posts
Attach to process….doesn’t work
In one of my customer’s VS.NET solutions, we use IIS to host a .NET Remoting object. Somehow, VS.NET fails to attach to IIS when we debug our client application (which in this case is a Windows Forms application). Luckely, James Avery’s Visual Studio Hacks pointed me at a macro that allows us to ...
Visual Studio Hacks
I recently bought the book Visual Studio Hacks by James Avery (published by O’reilly). It is a great collection on tips & tricks on Visual Studio 2003. It even includes a set of tips for the upcoming Visual Studio 2005. I was also happy to see that he recomments most of the 3rd party tools I ...
.NET Remoting Security and hosting in IIS
In the last couple of days, I’ve suffered from some frustrating security issues related to a .NET Remoting object hosted in IIS. My current customer uses reasonably locked down development systems, and noone seems to know the real details of the security configuration. Fortunately, the article Bu...
Choosing an interprise integration solution
Microsoft has published the article Understanding Microsoft Integration Technologies. Once in a while I find myself having that creepy feeling when I discover that there is another Microsoft product that I don’t know yet. This article provides a nice overview on MS’s vision on enterprise integrat...
Enterprise Integration with BizTalk 2004
Maybe you have heard of Enterprise Integration Patterns. It’s a pattern language for common solutions for integrating cross-platform application and systems. BizTalk is one of those products dedicating their lives to enterprise integration. This great article written by people from ThoughtWorks p...
Expensive exceptions or not…
One of things that I’ve always believed in is that throwing exceptions introduces a significant performance penalty. However, according to the article Performance Implications of Exceptions in .NET, in reality it is not that bad at all. I haven’t studied the exact context of the article, so take ...