Difference Between ASP.NET MVC 4 Web Api and Classic REST Services

I saw that it ASP.Net MVC4 WebApiprovides services like Rest.

But really the difference between normal Restand ASP.Net MVC4 WebApi?

+5
source share
2 answers

I'm not sure what you mean by normal Rest.

REST is a paradigm.

HTTP is the protocol following this paradigm.

The ASP.NET Web API allows developers to write ASP.NET applications that can be accessed through HTTP and adhere to the REST paradigm. Although you can create a REST API without a Web API, the Web API provides a ton of features that can eliminate the big pain associated with creating a truly RESTful API in ASP.NET.

apigee REST API.

+9

REST , REST Microsoft -API MVC4? , , .

MVC4 REST WCF. : http://mattmilner.com/Milner/Blog/post/2012/02/28/WebAPI-or-WCF.aspx.

+2

All Articles