Click here to Skip to main content
15,890,690 members
Articles / WCF

5 Simple Steps to Create Your First RESTful Service

Rate me:
Please Sign up or sign in to vote.
1.67/5 (4 votes)
23 Sep 2013CPOL3 min read 21.9K   19  
5 simple steps to create your first RESTful service

RESTful services are those which follow the REST (Representational State Transfer) architectural style.

Before implementing your first RESTful service, lets first understand the concept behind it. As we know that WCF allows us to make calls and exchange messages using SOAP over a variety of protocols i.e. HTTP, TCP, Named Pipes and MSMQ etc. In a scenario, if we are using SOAP over HTTP, we are just utilizing HTTP as a transport. But HTTP is much more than just a transport. So, when we talk about REST architectural style, it dictates that “Instead of using complex mechanisms like CORBA, RPC or SOAP for communication, simply HTTP should be used for making calls”.

RESTful architecture use HTTP for all CRUD operations like (Read/Create/Update/Delete) using simple HTTP verbs like (GET, POST, PUT, and DELETE). It’s simple as well as lightweight. For the sake of simplicity, I am going to implement only a GET request for which service will return certain types of data (i.e. Product data) in XML format.

Following are 5 simple steps to create your first RESTful service that returns data in XML.

  • Create a WCF Service Project.
  • Preparing the data (e.g. Product) to return.
  • Creating Service Contract
  • Implementing Service.
  • Configure Service and Behavior

1. Create a WCF Service Project

  •  Open Visual Studio.
  •  From File -> New Project.  Select WCF from left and create a new WCF Service Application.
     

2. Preparing the data to return

  • Now add a class to newly created project. Name it to Products.cs.



     

     

Now this Products.cs file will contain two things. First one is Data Contract. 

[DataContract] 
public class Product 
{ 
  [DataMember] 
  public int ProductId { get; set; } 
  [DataMember] 
  public string Name { get; set; } 
  [DataMember] 
  public string CategoryName { get; set; } 
  [DataMember] 
  public int Price { get; set; } 
}

Second one is a singleton implemented class that gets products data from a database and return list of products. In order to make it simple, we are preparing data inside this class instead of fetching from the database as follows:

C#
public partial class Products
{
  private static readonly Products _instance = new Products(); 
  private Products() { } 
  
  public static Products Instance 
  { 
   get { return products; } 
  } 
  
  private List<Product> products = new List<Product>() 
  { 
    new Product() { ProductId = 1, Name = "Product 1", CategoryName = "Category 1", Price=10}, 
    new Product() { ProductId = 1, Name = "Product 2", CategoryName = "Category 2", Price=5}, 
    new Product() { ProductId = 1, Name = "Product 3", CategoryName = "Category 3", Price=15}, 
    new Product() { ProductId = 1, Name = "Product 4", CategoryName = "Category 1", Price=9} };  }
}

3. Creating Service Contract

Now add a new WCF Service to this project as follows:

It will add contract as well as service file to project. Following is the code for service contract i.e. IProductRESTService.cs

C#
public interface IProductRESTService 
{ 
  [OperationContract]
  [WebInvoke(Method = "GET",ResponseFormat = WebMessageFormat.Xml,
      BodyStyle = WebMessageBodyStyle.Wrapped, UriTemplate = "GetProductList/")] 
  List<Product> GetProductList();
}

IProductRESTService contains only one method i.e. GetProductList. Important points to understand about this method is WebInvoke attribute parameters.

  • Method = "GET", represents an HTTP GET request.
  • ResponseFormat = WebMessageFormat.Xml, response format will be XML here but we can return JSON as well by changing its value to WebMessageFormat.json.
  • BodyStyle = WebMessageBodyStyle.Wrapped, indicates both the request and response are wrapped.
  • UriTemplate = "GetProductList/", it has two parts, URL path and query.

Don't forget to add using System.ServiceModel.Web at top.

4. Implementing RESTful Service

In this step we are going to implement the service. Only one method GetProductList is defined in the contract, so implementing service class will be as follows: 

C#
public class ProductRESTService : IProductRESTService 
{ 
  public List<Product> GetProductList() 
  { 
   return Products.Instance.ProductList; 
  } 
}

5. Configure Service and Behavior

The last step is to configure the service and its behaviors using the configuration file. Following is the complete ServiceModel configuration settings.  

<system.ServiceModel>
   <services>
     <service name="MyRESTService.ProductRESTService"
              behaviorConfiguration = "serviceBehavior">
       <endpoint address=""
                 binding="webHttpBinding"
                 contract="MyRESTService.IProductRESTService" 
                 behaviorConfiguration="web">
       </endpoint> 
     </service> 
   </services> 
   <behaviors> 
    <serviceBehaviors> 
       <behavior name="serviceBehavior"> 
         <serviceMetadata httpGetEnabled="true"/> 
         <serviceDebug includeExceptionDetailInFaults="false"/> 
       </behavior> 
    </serviceBehaviors> 
    <endpointBehaviors> 
       <behavior name="web"> 
         <webHttp/> 
       </behavior> 
    </endpointBehaviors> 
   </behaviors> 
   <serviceHostingEnvironment multipleSiteBindingsEnabled="true" /> 
</system.serviceModel>           

webHTTPBinding is the binding used for RESTful services. 

Now, everything about creating RESTful service is done. You can easily run and test it.

Right click ProductRESTService.svc file and click "View in Browser". You will see the following screen, that means service is fine.  

Just modify the URL in browser and add "<span style="white-space: pre-wrap;">GetProductList/</span>" to it. So, this is the UriTemplete we defined as service contract method.  

Hopefully, this simple WCF tutorials will be helpful for the readers. To keep the things simple, I restrict it to just getting records using HTTP GET verb. In my coming article, I'll provide all CRUD (Create, Read, Update, Delete) operations using RESTful service.  

Other WCF and Related Tutorials

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) Emaratech
United Arab Emirates United Arab Emirates
Imran Abdul Ghani has more than 10 years of experience in designing/developing enterprise level applications. He is Microsoft Certified Solution Developer for .NET(MCSD.NET) since 2005. You can reach his blogging at WCF Tutorials, Web Development, SharePoint for Dummies.

Comments and Discussions

 
-- There are no messages in this forum --