Tag Archives: WCF

7 Tip to Post JSON data to WCF RESTful Service using jQuery

When it comes to web development, you need to be sure you have picked the right program to develop the web, application or the software. There are hundreds of things that can go wrong. From the code to the arrangement of the functions and other related tasks; all must be done with detailed care. The… Read More »

WCF Self Hosting in a Console Application Simplified

In order to host a Windows Communication Foundation Service, we normally need a managed process, a ServiceHost instance and an endpoint configured forWCF Service.We can host aWCF Service in following different possible ways: Hosting in a Managed Application/ Self Hosting Console Application Windows/WPF Application Windows Service Hosting on Web Server IIS 6.0 (ASP.NET Application supports only HTTP)… 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 »