George2
George2

Reputation: 45801

Samples for RESTful web services for WCF

I am new to RESTful web services in WCF, but not new to WCF. I want to develop some simple RESTful web services in WCF which manually be accessed from a browser. Any good samples or documents to recommend? I am using C#.

Upvotes: 12

Views: 22075

Answers (4)

Dinesh Kumar
Dinesh Kumar

Reputation: 11

Some one wrote a short blog post showing how to build REST services using WCF (sample code included).

http://www.codeproject.com/Articles/201901/CREATE-RESTful-WCF-Service-API-Using-POST-Step-By

Upvotes: 0

Sandeep Kumar
Sandeep Kumar

Reputation: 803

You can also refer an example to create and get help of very basic restful service from here

Upvotes: 1

Toran Billups
Toran Billups

Reputation: 27407

I wrote a short blog post showing how to build REST services using WCF (sample code included). Keep in mind this example does not use the REST Toolkit released by Microsoft.

Upvotes: 3

Luke Puplett
Luke Puplett

Reputation: 45253

Aaron Skonnard of PluralSight has a bunch of great little screencasts on Channel9 and is probably the best intro I've seen - you'll probably do well to have some WCF experience first - those coming from the world of SOAP will pick it up easier.

http://channel9.msdn.com/shows/Endpoint/endpointtv-Screencast-Building-RESTful-Services-with-WCF/

Also, stick this in Bing

restful site:msdn.com

UPDATE

This answer still gets votes, so I thought it would be good to update it with recent changes. Basically, the WCF team have joined forces with the ASP.NET MVC community to bring REST to the Microsoft stack via ASP.NET MVC 4 Web API, so I guess the WCF REST stuff will not be developed from 2012 on.

http://wcf.codeplex.com/wikipage?title=WCF%20Web%20API%20is%20now%20ASP.NET%20Web%20API

Upvotes: 10

Related Questions