Click here to Skip to main content
Licence CPOL
First Posted 6 Jan 2009
Views 42,066
Downloads 826
Bookmarked 46 times

.NET 2.0 REST Service

By | 6 Jan 2009 | Article
A working implementation of a REST service in .NET 2.0.

Introduction

For a couple of days, I've been trying to find an example of a REST web service written in .NET. Not being ASTORIA yet a mature framework, I'd rather get something based on an already released product, even if this would mean that I should sacrifice features or write a little more code.

Background

There are two very interesting articles published in this site: Everything about REST Web Services - What and how - Part 2 - Design and REST Web Services in ASP.NET 2.0 (C#), but none of them showed me a proper, full .NET implementation. So, I decided to write my own.

Everything about REST Web Services - What and how - Part 2 - Design explains in detail how to format a proper REST request, how to handle the different VERBs, and what kind of information should be passed to the service in each case. I encourage you to take a look at this article since I won't discuss those concepts again.

What I will provide you is a simple implementation of these requirements based on HTTP request handlers built into the .NET 2.0 framework. There are many other ways to do this. You could try with the HTTP modules, you can go for the WCF classes, and some others. I had to make a choice, and the aim was to come up with something that most people could use.

Using the code

The Visual Studio 2008 solution will be composed of a website that will provide the data service in accordance to the REST model and also a client.

The Web Service will have a web.config file that will map the service URL requests, and a (very simple) class for each verb handler. The POST and GET verbs may be sent from any web browser, so I'll be providing you a simple .html test page for this. For PUT and DELETE, I have built a custom client.

Finally, the Contacts.xml is our data source.

Create the Web Service

The first thing you'll need to set up the Web Service is to configure IIS to properly handle the requests. A basic configuration will be to remove all inherited handlers and set up your own. To do that, you'll need to edit your web.config like this...

<configuration>
 <system.web>
  <httpHandlers>
   <clear />
   <add verb="PUT" path="*" validate="false" 
      type="RESTHandlers.PutHandler, RESTHandlers"/>
   <add verb="POST" path="*" validate="false" 
      type="RESTHandlers.PostHandler, RESTHandlers"/>
   <add verb="GET" path="*" validate="false" 
      type="RESTHandlers.GetHandler, RESTHandlers"/>
   <add verb="DELETE" path="*" validate="false" 
      type="RESTHandlers.DeleteHandler, RESTHandlers"/>
  </httpHandlers>
 </system.web>
</configuration> 

The next step is to create the handlers. This will be a basic task. Your classes should implement IHttpHandler and process the request. The basic structure should be something like this:

public void ProcessRequest(HttpContext context)
{ 
  // a) Validate the request.
  // Remember, for example, that a PUT should not contain 
  // any query strings values.
  if(context.Request.QueryString != sting.Empty)
  { 
    SendClientTheError(); 
    return;
  }
  // b) Process the request.
  ... 
  // c) Send a response.
  HttpResponse response = context.Response;
  response.Write("OK");
}

That's all for the service...

The clients

There are two clients included as an example in this solution: a webpage and a console application.

A .htm file will show some samples of the GET and POST verbs sent both from <A> and <FORM> tags.

The console application will issue sample PUT and DELETE commands.

Points of interest

Please note that I did not write an exhaustive validation for the requests, and that the examples are not a complete scenario for the service. For example, I haven't wrote code to make a DELETE with a query string to test the error message. Also, when you implement a service like this, it would be wise to add some other validations, like:

  • Validate the request URI with more detail.
  • Validate the query string parameters.
  • Validate the XML received against a schema.
  • Any other validation on the request context like user, referrer, etc...

License

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

About the Author

carlosmsr

Architect

Argentina Argentina

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 PinmemberDan Randolph18:26 22 Dec '11  
GeneralMy vote of 4 PinmemberRamanjaneyulu Kondaru1:15 8 Nov '11  
GeneralMy vote of 5 Pinmemberchenwei912017:29 27 Jul '11  
GeneralASP.Net Handler REST Service Pinmembergerrits22:08 14 Dec '10  
GeneralExample code missing!!! Pinmemberreviloliver9:15 29 Nov '10  
GeneralThanks for example PinmemberDorothy211:01 11 Jul '10  
QuestionHow to deploy to IIS? PinmemberAyasha Chen20:30 26 May '10  
AnswerRe: How to deploy to IIS? PinmemberMember 33785498:40 1 Apr '11  
GeneralRe: How to deploy to IIS? PinmemberAyasha Chen13:47 1 Apr '11  
AnswerRe: How to deploy to IIS 7? PinmemberDan Randolph19:01 22 Dec '11  
GeneralRe: How to deploy to IIS 7? Pinmembercarlosmsr7:02 26 Dec '11  
QuestionHow to implement this service? Pinmemberkraftspl8:24 6 Jan '09  
AnswerRe: How to implement this service? PinmemberIgor_VK3:49 7 Jan '09  
GeneralRe: How to implement this service? Pinmemberkraftspl3:58 7 Jan '09  
AnswerRe: How to implement this service? PinmemberIgor_VK5:48 7 Jan '09  
AnswerRe: How to implement this service? Pinmembercarlosmsr7:05 7 Jan '09  
Igor_VK, thanks for your kind and helpful answer.
 
About the web service implementation, I'm so sorry if there was any hardcoded ports, links or any other, that was my fault.
 
Still, I think that you should also be able to go to the Solution Explorer, right click on the web service project and select Publish from the context menu.
 
C.S.

GeneralRe: How to implement this service? Pinmemberrudu6:16 21 Jan '09  
GeneralRe: How to implement this service? Pinmembercarlosmsr11:29 21 Jan '09  
GeneralRe: How to implement this service? PinmemberMember 418118214:51 16 Feb '10  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 6 Jan 2009
Article Copyright 2009 by carlosmsr
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid