WCF 3.5 Vs WCF 4.0 Vs WCF 4.5

In this WCF tutorial, we will see the new and important features introduced in different versions of Windows Communication Foundation starting fromWCF 3.5, 4.0 toWCF 4.5. What’s New in WCF v3.5 WCF support for REST Style Services by introducing Web programming model using rich features of HTTP instead of just a transport. In order to… Read More »

Automatic Format Selection in WCF RESTful service

In .NET framework 4.0, Automatic Format Selection feature is introduced by AutomaticFormatSelectionEnabled property of WebHttpBehavior class. The purpose is to dynamically find out and return the response in appropriate format for a service operation. If the value of this property is set to “true” means using Automatic Format Selection, the response format of the operation… Read More »

Practical guide to WCF RESTful service

REST (Representational State Transfer) is an architectural style that dictates to think in terms of resources and their representation instead of just thinking about methods within a system. REST architecture focuses almost on the same set of constraints like Uniform interface, separation of concerns, caching, statelessness etc. as other distributed architecture follow. Using REST, we get… Read More »

CRUD Operations using WCF RESTful Service – Part 1

REST (Representational State Transfer) is basically an architectural style that is based on the same principles as that of “Web”. In this WCF Service tutorial we are going to see these web principles in action. We will be using standard HTTP verbs for CRUD (Create, Retrieve, Update, Delete) operations, HTTP Content-Types etc.In one of my… Read More »