Click here to Skip to main content
15,880,956 members
Articles / Programming Languages / C# 4.0

Create RESTful WCF Service API: Step By Step Guide

Rate me:
Please Sign up or sign in to vote.
4.86/5 (262 votes)
30 Aug 2010CPOL4 min read 1.7M   46K   464   243
Step by Step Guide to create Restful WCF service API in ASP.NET and C#

Introduction

Windows Communication Foundation (WCF) is an SDK for developing and deploying services on Windows. WCF provides a runtime environment for your services, enabling you to expose CLR types as services, and to consume other services as CLR types. In this article, I am going to explain how to implement restful service API using WCF 4.0 . The Created API returns XML and JSON data using WCF attributes.

What is REST?

Based on the Roy Fielding theory "Representational State Transfer (REST), attempts to codify the architectural style and design constraints that make the Web what it is. REST emphasizes things like separation of concerns and layers, statelessness, and caching, which are common in many distributed architectures because of the benefits they provide. These benefits include interoperability, independent evolution, interception, improved scalability, efficiency, and overall performance."

Actually only the difference is how clients access our service. Normally, a WCF service will use SOAP, but if you build a REST service, clients will be accessing your service with a different architectural style (calls, serialization like JSON, etc.).

REST uses some common HTTP methods to insert/delete/update/retrieve information which is below:

  1. GET - Requests a specific representation of a resource
  2. PUT - Creates or updates a resource with the supplied representation
  3. DELETE - Deletes the specified resource
  4. POST - Submits data to be processed by the identified resource

Why and Where to Use REST?

Few days back, I was writing a service which was supposed to be accessed by heterogeneous language/platform/system. It can be used by iPhone, Android, Windows Mobile, .NET web application, JAVA or PHP. Using web service, it was bit complex for me to expose it to everyone using uniform system. Then we decided to use REST, which was easily espoused over cloud. This was a great example which shows the capability of SIMPLE RESTful SERVICE :). Below are some points which will help you to understand why to use the RESTful services.

  1. Less overhead (no SOAP envelope to wrap every call in)
  2. Less duplication (HTTP already represents operations like DELETE, PUT, GET, etc. that have to otherwise be represented in a SOAP envelope).
  3. More standardized - HTTP operations are well understood and operate consistently. Some SOAP implementations can get finicky.
  4. More human readable and testable (harder to test SOAP with just a browser).
  5. Don't need to use XML (well, you kind of don't have to for SOAP either but it hardly makes sense since you're already doing parsing of the envelope).
  6. Libraries have made SOAP (kind of) easy. But you are abstracting away a lot of redundancy underneath as I have noted. Yes, in theory, SOAP can go over other transports so as to avoid riding atop a layer doing similar things, but in reality just about all SOAP work you'll ever do is over HTTP.

Step by Step Guide

Generally, a developer is scared to use WCF because of a lot of confusing configuration. I will try to use minimum configuration so that it will be easier to understand for us. We will develop Restful WCS API in 6 steps. So let’s start now.

STEP 1

First of all launch Visual Studio 2010. Click FILE->NEW->PROJECT. Create new "WCF Service Application".

Image 1

STEP 2

Once you create the project, you can see in solution that By Default WCF service and interface file are already created. Delete By default created file as we will create our own interface and WCF service file.

Image 2

STEP 3

Now right click on solution and create one new WCF service file. I have given name to the service file as “RestServiceImpl.svc”.

Image 3

STEP 4

As I explained at the start of the article that we will be writing an API which can return data in XML and JSON format, here is the interface for that. In IRestServiceImpl, add the following code:

Image 4

In the above code, you can see two different methods of IRestService which are XMLData and JSONData. XMLData returns result in XML whereas JSONData in JSON.

STEP 5

Open the file RestServiceImpl.svc.cs and write the following code over there:

Image 5

STEP 6

Now let’s move to configuration part which is the last one. There will be two basic parts of the configurations file which we must have to understand.

XML
<services> 

This part contains information about the End Point. Below are the code details.

Click to enlarge image

XML
<behaviors>

This part contains details about service and endpoint behavior.

Image 7

And that’s it. Our Restful WCF service is ready for test purposes.

Service Ready to Test Now

Now I launch the application in the browser to see the result. I launch this service in Internet Explorer and my URL is now http://localhost:35798/RestServiceImpl.svc. Now if I use http://localhost:35798/RestServiceImpl.svc/xml/123 URL, I get the following response on the browser which is an XML format and that was my task to achieve.

Image 8

Now if I use http://localhost:35798/RestServiceImpl.svc/json/123 URL, I get the following response on the browser which is an XML format and that was my task to achieve.

Image 9

Hope the article is useful for the community. Comments, suggestions and criticisms are all welcome.

History

  • 30th August, 2010: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) http://mr-ashu.blogspot.com/
Singapore Singapore
A versatile person having 10 Years of IT Industry experience in software development on .NET and Android Technology.

Comments and Discussions

 
GeneralMy vote of 5 Pin
anurag_bhd17-May-13 20:01
anurag_bhd17-May-13 20:01 
GeneralMy vote of 5 Pin
Cristian Amarie28-Apr-13 0:03
Cristian Amarie28-Apr-13 0:03 
QuestionPost call with soap envelope Pin
Member 34719682-Apr-13 17:35
Member 34719682-Apr-13 17:35 
Questioncall post with soap envelope Pin
Member 34719682-Apr-13 17:17
Member 34719682-Apr-13 17:17 
GeneralMy vote of 5 Pin
Member 451897627-Mar-13 21:04
Member 451897627-Mar-13 21:04 
GeneralMy vote of 5 Pin
mehtabalikhan14-Mar-13 23:53
mehtabalikhan14-Mar-13 23:53 
GeneralMy vote of 4 Pin
bindugadu5-Mar-13 3:15
bindugadu5-Mar-13 3:15 
QuestionConsuming Restful Service Pin
Lalit227-Feb-13 1:03
Lalit227-Feb-13 1:03 
How can I consume the restful service which I have made as its told above.
QuestionSecurity Question Pin
MatthysDT25-Feb-13 21:05
MatthysDT25-Feb-13 21:05 
Questiongreat article Pin
mathew-1217-Feb-13 21:25
mathew-1217-Feb-13 21:25 
GeneralMy vote of 5 Pin
Mike Whaley15-Feb-13 7:13
Mike Whaley15-Feb-13 7:13 
QuestionThank you Pin
Mike Whaley15-Feb-13 7:12
Mike Whaley15-Feb-13 7:12 
QuestionJavascript and REST Pin
mt40613-Feb-13 19:37
mt40613-Feb-13 19:37 
QuestionMust be a newbie thing...can't run the code Pin
rjmyers5713-Feb-13 8:10
rjmyers5713-Feb-13 8:10 
AnswerRe: Must be a newbie thing...can't run the code Pin
Member 827892615-Jun-13 8:17
Member 827892615-Jun-13 8:17 
GeneralThanks for taking the time to write this Pin
Member 981392312-Feb-13 8:21
Member 981392312-Feb-13 8:21 
GeneralMy vote of 4 Pin
anthony@gentoo7-Feb-13 5:38
anthony@gentoo7-Feb-13 5:38 
GeneralMy vote of 4 Pin
Deeptirajput31-Jan-13 20:30
Deeptirajput31-Jan-13 20:30 
Generalawesome Pin
Water Man26-Jan-13 8:40
Water Man26-Jan-13 8:40 
QuestionGood Pin
armen kn24-Jan-13 9:32
armen kn24-Jan-13 9:32 
GeneralMy vote of 5 Pin
nano2k23-Jan-13 1:32
nano2k23-Jan-13 1:32 
GeneralAnother JSON WCF Web Service walkthrough Pin
Mike Gledhill21-Jan-13 9:04
Mike Gledhill21-Jan-13 9:04 
QuestionAccessing from remote machine Pin
Sandeep N dhole18-Jan-13 1:20
Sandeep N dhole18-Jan-13 1:20 
QuestionAuthentication and Authorisation? Pin
thompsonson210-Jan-13 1:18
thompsonson210-Jan-13 1:18 
GeneralMy vote of 5 Pin
Member 61643943-Jan-13 23:30
Member 61643943-Jan-13 23:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.