Click here to Skip to main content
15,884,629 members
Articles / Web Development / ASP.NET

3 Simple Steps to Create Your First ASP.NET Web API Service

Rate me:
Please Sign up or sign in to vote.
4.67/5 (13 votes)
29 Sep 2013CPOL3 min read 115.2K   21   5
Listed here are 3 simple steps to create your first ASP.NET web API service

"ASP.NET Web API is a framework that simplifies the creation of HTTP services".

Using ASP.NET Web API, we can create HTTP services that are non-SOAP based like plain XML or JSON strings, etc. with added advantages.

  • Allowing to create resource-oriented services using the full features of HTTP
  • Exposing services to a variety of clients easily like browsers or mobile devices, etc.

Before diving into details, I would like to clarify one misconception that ASP.NET Web API has replaced WCF. WCF is still a powerful programming model for creating SOAP based services that uses a variety of transport protocols like HTTP, TCP, Named Pipes or MSMQ, etc. You can find the same implementation by using WCF REST in another article, i.e., "5 simple steps to create your first RESTful service".

Apart from Visual Studio 2010 or 2012, we also need MVC 4.0 to implement this HTTP service. For the purpose of this implementation, I am going to use Visual Studio 2010.

You can download MVC 4.0 for Visual Studio 2010 from Microsoft as follows:

Following are 3 simple steps to create an HTTP service that returns non-SOAP based data:

  • Create Web API Project
  • Prepare domain Model
  • Adding Controller class

Let's move forward step by step to create a simple HTTP service using ASP.NET Web API.

1. Create Web API Project

  • Open Visual Studio and create "New Project", i.e., File -> New Project.
  • Choose "ASP.NET MVC 4 Web Application" template and name project as "FirstWebAPIService".
  • When you click "OK" button, a new window will appear for selecting a sub-template. Actually for ASP.NET MVC 4 Web Application, we have multiple sub-options, i.e., Empty, Internet Application, Web API, etc.
  • Choose "Web API" and simply press "OK" button.

  • A default ASP.NET MVC 4 Web API template project is created. As it is an MVC application template, you will easily find "Model", "View" and "Controller" folders inside it.

2. Preparing Domain Model

Now in a second step, we need to prepare the model.

  • Right click on the "Model" folder and choose "Class" under "Add" from the context menu as shown in the figure.
  • Name the class as "Product.cs".

Here is the code for Product class:

C#
public class Product
{
    public int ProductID { get; set; }
    public string ProductName { get; set; }
    public string ProductCategory { get; set; }
    public int Price { get; set; }
}

3. Adding Controller Class

Controller class plays an important role, because request coming from client hits the controller first. Then the controller decides which model to use to serve the incoming request. So, in order to add a controller:

  • Right click on the "Controller" folder and choose "Controller" under "Add" from the context menu as shown in figure.
  • Name the controller as "ProductsController".

  • Click the "Add" button, a new controller class will be added.

In order to make things simple, we will load the model with data inside this controller instead of loading it from database. Following is the code for controller class.

C#
public class ProductsController : ApiController
{
        Product[] products = new Product[]
         {
             new Product { ProductID = 1, ProductName = "Product 1", 
                           ProductCategory= "Category 1", Price = 120 },
             new Product { ProductID = 2, ProductName = "Product 2", 
                           ProductCategory= "Category 1", Price = 100 },
             new Product { ProductID = 3, ProductName = "Product 3", 
                           ProductCategory= "Category 2", Price = 150 },
             new Product { ProductID = 4, ProductName = "Product 4", 
                           ProductCategory= "Category 3", Price = 90 }
         };
        public IEnumerable<Product> GetProducts()
        {
            return products;
        }
}

Don't forget to add "using FirstWebAPIService.Models;" at the top of the controller class.

Now, it's time to test your HTTP service using ASP.NET MVC Web API.

Run the application by pressing "CTRL+F5", Welcome window will appear as follows:

In order to call our Product controller, change the URL as "http://localhost:XXXX/api/products". You will see the results as shown in the following output window.

Final output returned can be displayed differently by different browsers. Here is the output of Google Chrome version 29.0.1547.66.

Hopefully, this simple web development tutorial will be helpful for developers to code their first HTTP service using ASP.NET MVC Web API. Further, I'll provide Web API HTTP service with all CRUD (Create, Read, Update, Delete) operations in the following weeks, In Shaa Allah.

Related Web Development Tutorials

License

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


Written By
Software Developer (Senior) Emaratech
United Arab Emirates United Arab Emirates
Imran Abdul Ghani has more than 10 years of experience in designing/developing enterprise level applications. He is Microsoft Certified Solution Developer for .NET(MCSD.NET) since 2005. You can reach his blogging at WCF Tutorials, Web Development, SharePoint for Dummies.

Comments and Discussions

 
GeneralMy vote of 4 Pin
Sibeesh Venu1-Aug-14 19:19
professionalSibeesh Venu1-Aug-14 19:19 
QuestionXML is not opening Pin
Member 1040842817-Nov-13 22:46
Member 1040842817-Nov-13 22:46 
AnswerRe: XML is not opening Pin
Imran Abdul Ghani17-Nov-13 23:52
Imran Abdul Ghani17-Nov-13 23:52 
GeneralRe: XML is not opening Pin
Member 1040842818-Nov-13 17:17
Member 1040842818-Nov-13 17:17 
GeneralRe: XML is not opening Pin
Member 1059503413-Feb-14 8:47
Member 1059503413-Feb-14 8:47 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.