Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

REST WebServices in C#

I need to develop a Rest Webservice, Where can I find tutorial or complete sample code to build REST WebServices in C#. Please help me with sample

like image 761
Timmi Avatar asked Oct 31 '09 12:10

Timmi


People also ask

What is a REST Web Service?

A REST API (also known as RESTful API) is an application programming interface (API or web API) that conforms to the constraints of REST architectural style and allows for interaction with RESTful web services. REST stands for representational state transfer and was created by computer scientist Roy Fielding.

What is REST API C?

Representational State Transfer (REST) is an architectural style that defines a set of constraints to be used for creating web services. REST API is a way of accessing web services in a simple and flexible way without having any processing.

What is an example of a REST Web Service?

Facebook, Twitter, and Google expose their functionality in the form of Restful web services. This allows any client application to call these web services via REST.


1 Answers

The WCF Rest Starter Kit is probably your best starting point.

Also, Aaron Skonnard of Pluralsight did a great screencast series on the WCF REST Starter kit - check it out at the Pluralsight screencast page (click on the REST tag in the tag cloud).

For general information on WCF, including the REST bits of it, check out the MSDN WCF Developer Center.

Hope that helps!

Marc

like image 110
marc_s Avatar answered Oct 06 '22 12:10

marc_s