In this video tutorial, I will show you how to change the default binding in WCF 4.0. WCF is a unified framework for creating SOA based application. By the end of this video, you will learn to create a WCF service in c#.
In this post, I will show you how to host WCF service in IIS using TCP protocol. By default, the TCP WCF activation service is not enabled on your machine. You can follow these steps to enable the TCP activation for WCF serv…
In this post, I will share very handy tips for WCF 4.0. As we all know that default binding is a new feature introduced in WCF 4.0. With WCF 4, this is no longer the case because the runtime automatically adds one or more de…
In this post, I will show you how to post JSON array hashes in the WCF rest service. Before going to code snippet let’s discuss some basic terminology. What is Array of Hashes An array of hashes is a data structure in which…
This post will show you how to stream video on asp.net using the WCF rest service. The techniques used here are as we don’t know the exact content length of the data, so we used Content-Encoding transfer encoding to maintain …
How to read the incoming and outgoing message in WCF In this post, I will show you how to read the outgoing and incoming message in WCF. Create a new console application and add the following assembly reference in the projec…
In this post, I will show you how to pass complex JSON data from jquery to WCF service. Create a new website in visual studio. Add a new item WCF service named BlogService and replace the existing code with following IBl…