By tag: WCF
0
kicks
Getting started with WCF services
I am planning to write a series of articles on WCF(windows communication foundation). This is my first one in the series.
0
kicks
Simple Hosting of a WCF Service in a Console Application
Title says it all. Shows how simple it is the host a WCF service in a console app. Not a practical use of course, but a good exercise for beginners.
0
kicks
Introduction to WCF - Creating a Simple Web Service using WCF
Short and simple walkthrough on creating and testing a WCF web service in visual studio 2012 using the WCF Test Client. Introductory style post for those unfamiliar with WCF.
0
kicks
What is Windows Communication Foundation
High level intro to what WCF is and why it came to be. Part one in a multi part series to bring anyone still unfamiliar with the technology up to speed and able to create a few services of their own.
0
kicks
Visual Studio 2012 will be avialable on 15 August
Microsoft Visual Studio 2012 and .NET Framework 4.5 will be available on 15 August.
0
kicks
WCF FAQs - Part 1
The article is a collection of most frequently asked questions about Windows Communication Foundation covering the beginner level.
0
kicks
WCF Services - Choosing the appropriate WCF binding
Windows Communication Foundation is a programming model that enables us to develop and then expose our services in a variety of different ways. It means a single WCF service can be exposed with different wire formats and message protocols. Bindings in WCF actually defines that how to communicate wit...
0
kicks
Understanding WCF Bindings and Channel Stack
This article explains WCF Service Bindings and Channel Stack as part of WCF Runtime.
0
kicks
Lost and found headers and identity for WCF service
If you are aware where is your headers and identity that were specified in config file and disappeared during runtime, check may be you are assigning an endpoint address form the code. Read an article for possible solutions...
0
kicks
WCF or ASP.NET Web APIs? My two cents on the subject
A couple of weeks ago (around Feb. 16) the WCF WebAPIs - a framework for building RESTful/Hypermedia/HTTP services, which was in development over the past 1.5 years as a side-project on CodePlex, has been formally integrated into ASP.NET and its name changed to the ASP.NET Web API.
These past two w...
0
kicks
What’s new in WCF 4.5? WebSocket support (Part 1 of 2)
This is the 11th post in the WCF 4.5 series. The previous post was about the new UDP transport support, and this new post is also about new transports – the WebSocket transport.
This post is part 1 of 2. This post will be about the WebSocket support between .NET apps using WCF (SOAP-based), and the...
0
kicks
What’s new in WCF 4.5? WebSocket support (Part 2 of 2)
It’s time for post No. 12 in the WCF 4.5 series. Part 1 of 2 was about WebSocket support with SOAP-based messages. Part 2 is about WebSocket support with plain text messages that enables the interaction between web browsers and WCF.
0
kicks
What’s new in WCF 4.5? UDP transport support
This is the tenth post in the WCF 4.5 series. I’ve started this series of posts 4 months ago when .NET 4.5 developer preview was announced; The Beta/RC/RTM version is still to come, but hopefully it will be available soon, and you will be able to use the new WCF 4.5 features in your projects.
Until...
0
kicks
Calling a WCF service from a client without having the contract
I was asked yesterday in the Hebrew C#/.NET Framework MSDN forums a tough question – is it possible to dynamically call a WCF service using only the contract name, operation name, and metadata address?
The short answer is – YES! To see how, check out the code in the blog post.
0
kicks
WCF/ASMX Interoperability – Removing the Annoying xxxSpecified when Ad
WCF/ASMX Interoperability – Removing the Annoying xxxSpecified when Adding a Web Reference to a WCF Service
Today I answered a question in the MSDN forums about consuming WCF from a .NET 2 client, using the “Add Web Reference” option of Visual Studio. Apparently adding a web reference to a WCF serv...