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

 
Questionthanks Pin
Bebosh26-Jan-15 13:32
Bebosh26-Jan-15 13:32 
QuestionGreat job explaining Pin
RChattop26-Dec-14 23:11
RChattop26-Dec-14 23:11 
AnswerRe: Great job explaining Pin
Member 1146031817-Feb-15 20:11
Member 1146031817-Feb-15 20:11 
Suggestiongreat example Pin
Member 105935315-Nov-14 8:05
Member 105935315-Nov-14 8:05 
QuestionVisual Studio 2013 crash when creating a WCF Service Application Pin
azprivat11-Sep-14 2:46
azprivat11-Sep-14 2:46 
QuestionWhat do you mean by statelessness? Pin
Bastien Vandamme28-Jul-14 23:55
Bastien Vandamme28-Jul-14 23:55 
AnswerRe: What do you mean by statelessness? Pin
ashutosh k. shukla29-Jul-14 15:55
ashutosh k. shukla29-Jul-14 15:55 
GeneralRe: What do you mean by statelessness? Pin
Mihai Barbos12-Aug-14 23:39
Mihai Barbos12-Aug-14 23:39 
GeneralGreat example Pin
Nicolas Mertens24-Jun-14 1:07
Nicolas Mertens24-Jun-14 1:07 
GeneralMy vote of 5 Pin
Awadhendra Tripathi8-Jun-14 20:32
professionalAwadhendra Tripathi8-Jun-14 20:32 
QuestionCreate RESTful WCF Service using VB.NET Pin
IshaqSalam8-Jun-14 19:02
IshaqSalam8-Jun-14 19:02 
QuestionProblem while returning URL like http://www.codeproject.com returns http:/\www.codeproject.com in JSON Pin
pavan_wani0728-May-14 0:05
pavan_wani0728-May-14 0:05 
QuestionRESTSERVICE unable to return values (ReadResponse() failed: The server did not return a response for this request. Server returned 0 bytes) Pin
pavan_wani0728-May-14 0:00
pavan_wani0728-May-14 0:00 
QuestionAt the beginning I couldn't get /xml/123 or /json/123 Pin
Alex161128-Apr-14 8:55
Alex161128-Apr-14 8:55 
Questionuseful Pin
Oscarw22-Apr-14 5:20
Oscarw22-Apr-14 5:20 
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 

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.