Google+

Monday, August 19, 2013

Pre-requisites: ASP.NET Web API Installation



  1. In this walkthrough we'll install the ASP.NET Web API HTTP service in order to design an Rest backend.  You can follow this step by step tutorial as a standalone, or you can learn all the posts to build the entire app.
    The ASP.NET Web API is a framework that makes easy to build HTTP web services that can be used by a broad range of clients, meaning both browsers and mobile. Using the Rest technologies, we could then return data according to client requests, both JSON and XML, and according to the VERB of the request: the browser can make a GET, PUT, POST, or DELETE request and get the corresponding server response appropriately.
    The Web API is included in ASP.NET MVC 4, a framework designed for building scalable web applications while using stable design patterns, and fit to both Visual Studio 2010 and Visual Studio 2012 .
    You can download the Web API in this link :
  2. Or using NuGet :   PM>  Install-Package AspNetWebApi
  3. Then follow the setup friendly steps:







And that's all.

כתב: כרמל שוורצמן

No comments:

Post a Comment