Interesting programming ideas, solutions, and logic that I have used to solve problems or have come across throughout my career.
About Me
- William Andrus
- Northglenn, Colorado, United States
- I'm primarily a BI Developer on the Microsoft stack. I do sometimes touch upon other Microsoft stacks ( web development, application development, and sql server development).
Showing posts with label tutorial. Show all posts
Showing posts with label tutorial. Show all posts
Tuesday, November 06, 2007
Friday, November 02, 2007
WCF Tutorial
My first attempt at using WCF, thanks to http://msdn2.microsoft.com/en-us/vbasic/bb736015.aspx was very successful.
I did change the language to C# for my version, since I perfer it over VB.Net. There were some changes that I had to go about in a different way to get it to be successful.
Example:
Dim t As Type = GetType(ServiceLib.HelloService)
vs.
I did change the language to C# for my version, since I perfer it over VB.Net. There were some changes that I had to go about in a different way to get it to be successful.
Example:
Dim t As Type = GetType(ServiceLib.HelloService)
vs.
ServiceLib.HelloService hs = new ServiceLib.HelloService();
Type t = Type.GetTypeArray(new object[]{hs})[0];
Labels:
microsoft,
tutorial,
wcf,
windows communication foundation
Subscribe to:
Posts (Atom)