Click here to Skip to main content
15,867,568 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

 
QuestionASMX Application Pin
vinodhini sekar1-Apr-14 20:00
vinodhini sekar1-Apr-14 20:00 
AnswerRe: ASMX Application Pin
JRASPEN30-May-14 8:40
professionalJRASPEN30-May-14 8:40 
GeneralThank you very much, great example (-: Pin
Ran Partush29-Mar-14 5:49
Ran Partush29-Mar-14 5:49 
QuestionGreat example! Pin
Member 460685218-Mar-14 9:35
Member 460685218-Mar-14 9:35 
QuestionXML works, JSON fails Pin
karenpayne4-Mar-14 9:43
karenpayne4-Mar-14 9:43 
GeneralLean and kean Pin
Duncan Edwards Jones3-Mar-14 10:37
professionalDuncan Edwards Jones3-Mar-14 10:37 
QuestionMy vote of 5 Pin
kszynter19-Feb-14 20:52
kszynter19-Feb-14 20:52 
QuestionMy vote of 5 Pin
maiteib11-Feb-14 2:12
maiteib11-Feb-14 2:12 
GeneralMy vote of 4 Pin
Kesavarapu Venkatesh26-Dec-13 22:42
Kesavarapu Venkatesh26-Dec-13 22:42 
QuestionI am unable to get the output as shown here Pin
Dinesh9217-Dec-13 18:30
professionalDinesh9217-Dec-13 18:30 
QuestionVery good starting point Pin
Member 806624214-Nov-13 4:18
Member 806624214-Nov-13 4:18 
GeneralMy vote of 5 Pin
mvrene12-Nov-13 13:37
mvrene12-Nov-13 13:37 
QuestionMethod not allowed Pin
vvdhar21-Oct-13 5:39
vvdhar21-Oct-13 5:39 
AnswerRe: Method not allowed Pin
livewire#1322-Nov-13 1:53
livewire#1322-Nov-13 1:53 
GeneralMy vote of 5 Pin
Mario Gagnon20-Oct-13 5:43
Mario Gagnon20-Oct-13 5:43 
General5 Stars!!! Pin
Member 1015311314-Oct-13 5:37
Member 1015311314-Oct-13 5:37 
GeneralVery Nice Article Pin
Jaymala Singh14-Oct-13 3:28
Jaymala Singh14-Oct-13 3:28 
QuestionHow can i send secure data in WCF Pin
luckyjamal6-Oct-13 13:32
luckyjamal6-Oct-13 13:32 
AnswerRe: How can i send secure data in WCF Pin
Dinesh9217-Dec-13 18:41
professionalDinesh9217-Dec-13 18:41 
QuestionNot localhost Pin
MMessell11-Sep-13 2:38
MMessell11-Sep-13 2:38 
AnswerRe: Not localhost Pin
ashutosh k. shukla15-Sep-13 20:39
ashutosh k. shukla15-Sep-13 20:39 
GeneralMy vote of 5 Pin
Member 78137196-Sep-13 2:13
Member 78137196-Sep-13 2:13 
QuestionHow do I customize the response? Pin
eeidfn20-Aug-13 20:26
eeidfn20-Aug-13 20:26 
QuestionQuestion in Steep 6 Pin
Túlio Cruz8-Jul-13 7:29
Túlio Cruz8-Jul-13 7:29 
GeneralMy vote of 4 Pin
Piyush Trada4-Jul-13 3:52
Piyush Trada4-Jul-13 3:52 

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.