We probably all learned this at school. When you build software, you analyze requirements, find the nouns and build an entity-relationship model , an ERD. You start with the first normal form and normalize the model until you start building software upon it. But when you’re building software in a distributed...
I’ve written in SDN Magazine about messaging and how it relates to RPC. It isn’t about messaging vs. RPC, but more or less an attempt to explain what benefits messaging can add to your software. Monday April 23rd I gave a presentation about the same subject. With this post I want to show the code so...
When you create a Windows Communication Foundation (WCF) service proxy class for a service by using svcutil.exe , it creates a proxy that derives from System.ServiceModel.ClientBase<TChannel> . This class implements IDisposable so you think you can use your proxy safely in a C# using statement...