Click here to Skip to main content
Click here to Skip to main content

CREATE RESTful WCF Service API Using POST: Step By Step Guide

By , 25 May 2011
 

Introduction

In my previous article, I tried to explain about WCF Restful service using HTTP Get method. This works well as long as you are sending small data as information to the service. But if want to deliver huge data, HTTP GET Method is not a good choice. In this article, we will create one WCF RESTFul POST API. I will also try to explain why and where to use POST method.

Why to use POST, not GET?

When I write any WCF service, I always use POST. The reason is the advantage of POST over GET. Using HTTP POST method, you can almost achieve everything which you can achieve from GET. Despite this, you will get some additional feature if using POST. We might say that "GET" is basically for just getting (retrieving) data whereas "POST" may involve anything, like storing or updating data, or ordering a product, or sending E-mail, etc.

POST

  1. Easy Character Encoding using application/x-www-form-urlencoded
  2. No Proxy by default so always actual data from web server
  3. Data length can be restricted by webserver, not by browser

GET

  1. Character encoding will reduce the amount of data that can be used because of URL encoding entities (i.e. three Japanese characters are converted to this: %26%2312454%3B%26%2312455%3B%26%2312502%3B)
  2. Running an HTTP request with GET can be cached on your web browser or a configured proxy server
  3. Maximum URL length is 2,083 characters in Internet Explorer (see MaxClientRequestBuffer: Use POST instead of GET to send large amounts of data in request)

and lot more...

Extremely long URLs are usually a mistake. URLs over 2,000 characters will not work in the most popular web browser. Sending long information via URL is not a good way of implementation and also it has many restrictions, i.e., max length of URL, information format, bla bla bla. For example, Internet Explorer has a limitation implemented at 2083 characters. URI is meant to be readable not to send information.

So if you are writing any REST service and your information is long enough, better to choose POST instead of GET method.

In this article, I am going to create WCF Restful service using POST method and access it using HTTP Request. So we will have client and server both in this example code. I am creating one service which accepts HTTP Post XML request and response request data in XML format.

Step by Step Guide

STEP 1

Launch Visual Studio 2010. Click FILE->NEW->PROJECT. Create new "WCF Service Application".

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.

Step-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”.

STEP 4

We will create two DataContract classes for request and response purposes.

Step-4

RequestData will receive the request from the client and ResponseData response. One very important thing is that POST XML format to the service should be the same as RequestData. So the post XML request format can be like below:

Step-4

We must have to use namespace for the data contract in POST RESTFul service, which has multiple uses, i.e., reflects the current version of your code. The same namespace should use in XML to Post data. Here, I have given http://www.eysnap.com/mPlayer as namespace which can be changed.

STEP 5

Now we will write the OperationContract in IRestServiceImpl which is an interface. Below is the code for that.

As we can see in the above code, here Request and Response format is XML. We can change it to JSON also by changing the WebMessageFormat from WebMessageFormat.Xml to WebMessageFormat.Json.

STEP 6

Implementation of Auth OperationContract in RestServiceImpl.svc.cs here.

STEP-6

STEP 7

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

Services

Behaviors

And that’s it. Our Restful WCF POST RESTful service is ready to test.

SERVICE IS READY

I have created one Test WebClient in C# which makes HTTP request with some XML data. My application is hosted on localhost and URL is http://localhost:35798/RestServiceImpl.svc/auth. I launched and invoked service using WebClient. Below is my XML response which is the correct one.

This service can be used by any language application (.NET, PHP, JAVA, etc.) and that is the major reason to use REST service in the application.

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

History

  • 25th May, 2011: Initial post

License

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

About the Author

ashutosh k. shukla
Software Developer (Senior) http://mr-ashu.blogspot.com/
Singapore Singapore
Member
A versatile person having 6.0 Years of IT Industry experience in software development on .NET Technology presently leading the team successfully.

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 4memberrajeshpmarathe22 Feb '13 - 0:16 
Questionhow to call XMl file contain different tagsmemberMember 98123935 Feb '13 - 19:41 
GeneralMy vote of 5membereds.net28 Jan '13 - 5:46 
GeneralMy vote of 5memberSuperDuperPengu14 Jan '13 - 16:20 
GeneralMy vote of 1memberMember 813298511 Jul '12 - 20:48 
GeneralHow to call xml directly [modified]memberAlpesh Dhanesha7 Jul '12 - 21:34 
GeneralRe: How to call xml directlymemberMember 98123935 Feb '13 - 19:54 
Questionnot workingmembermahesh152919 Apr '12 - 5:46 
AnswerRe: not workingmemberashutosh k. shukla19 Apr '12 - 5:59 
QuestionAshutosh need your help soonmemberMember 884729719 Apr '12 - 5:35 
AnswerRe: Ashutosh need your help soonmemberashutosh k. shukla19 Apr '12 - 6:01 
GeneralRe: Ashutosh need your help soonmemberMember 884729719 Apr '12 - 6:17 
GeneralRe: Ashutosh need your help soonmemberMember 884729719 Apr '12 - 6:20 
QuestionAgain I need your Help Please (its urgent for me)memberMaheshRastogi00513 Feb '12 - 3:40 
Questionparameter in url with out question markmemberMaheshRastogi00512 Feb '12 - 2:57 
QuestionIs there a way to test a post directly from the URL of a browser?memberlittleGreenDude3 Feb '12 - 9:58 
AnswerRe: Is there a way to test a post directly from the URL of a browser?memberashutosh k. shukla3 Feb '12 - 17:39 
SuggestionRe: Is there a way to test a post directly from the URL of a browser?memberps3645210 Feb '12 - 0:15 
GeneralRe: Is there a way to test a post directly from the URL of a browser?memberashutosh k. shukla10 Feb '12 - 0:17 
Questionplease help me its urgent [modified]memberMaheshRastogi0051 Feb '12 - 4:21 
AnswerRe: please help me its urgentmemberashutosh k. shukla1 Feb '12 - 4:24 
GeneralRe: please help me its urgentmemberMaheshRastogi0051 Feb '12 - 4:28 
GeneralRe: please help me its urgentmemberashutosh k. shukla1 Feb '12 - 4:28 
QuestionCan I consume REST WCF via iPhone web app.memberkartikps_19795 Dec '11 - 10:54 
AnswerRe: Can I consume REST WCF via iPhone web app.memberashutosh k. shukla5 Dec '11 - 16:17 
QuestionGreat examplememberNaresh Mittal16 Nov '11 - 17:14 
AnswerRe: Great examplememberashutosh k. shukla17 Nov '11 - 7:59 
Questioncan RequestData have more than one data contract?memberSelveia15 Nov '11 - 4:27 
AnswerRe: can RequestData have more than one data contract?memberNaresh Mittal16 Nov '11 - 17:18 
QuestionThe remote server returned an error: (405) Method Not Allowed.memberprof.seva13 Nov '11 - 9:53 
AnswerRe: The remote server returned an error: (405) Method Not Allowed.memberashutosh k. shukla13 Nov '11 - 15:50 
GeneralRe: The remote server returned an error: (405) Method Not Allowed.memberSelveia13 Nov '11 - 23:19 
QuestionThanks and keep it upmemberRupeshKumar20 Oct '11 - 5:38 
QuestionCreate a POST to a REST WCF Service with Fiddler [modified]memberMember 831979718 Oct '11 - 8:54 
QuestionPassing Derived Class in RESTFul WCF ServicememberAlexander B. Deyto12 Sep '11 - 19:01 
AnswerRe: Passing Derived Class in RESTFul WCF Servicememberashutosh k. shukla12 Sep '11 - 21:11 
GeneralRe: Passing Derived Class in RESTFul WCF ServicememberAlexander B. Deyto13 Sep '11 - 19:46 
QuestionExcellentmemberSunasara Imdadhusen31 Aug '11 - 19:03 
AnswerRe: Excellentmemberashutosh k. shukla31 Aug '11 - 19:57 
QuestionThanksmemberhariharan.m8521 Aug '11 - 20:14 
AnswerRe: Thanksmemberashutosh k. shukla21 Aug '11 - 20:16 
QuestionThanksmemberGaraus10 Aug '11 - 11:37 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 25 May 2011
Article Copyright 2011 by ashutosh k. shukla
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid