How to Create Web API in ASP.Net MVC

Introduction:

Today, we'll learn how to use the Web API in the ASP.NET MVC 5 application.

Difference Between ViewBag, ViewData and TempData in MVC with an example
. 
WebAPI: 

Image result for asp.net web api images

It is a framework for build HTTP services that reach a board range or you can say that world wide, including browsers and mobile devices and so on. ASP.NET Web API is used for building RESTful application in .NET Framework. 

Why it is used:

Now a days, new technologies are come in our daily life and we are very curious for use new things like mobile devices, mobile application, browsers and tablets etc. and accessing most of it via internet all these things are created by using Microsfot new technology which is call WebAPI.


Let's start with step by step.

Create ASP.NET  MVC 5.0 Web API Application. Open new project.

A lot of features of WebAPI are similar to ASP.NET MVC,

Here's one more scenario.
Point 1:
In ASP.NET MVC Controller class is inherited from MVC controller.
Point 2:
In Web API values Controller it is inherit from API Controller.
Now here, I will discuss other points.
In any MVC url contains the 3 values given values.
  1. Controller Name (in url controller name is must. It is first parameter of url).
  2. Action Name (in url action name is must. It is second parameter of url).
  3. Id (individual)(it is manadatory)
 After that,

Here in WebApi there is no need for action method. It only takes api name and cotroller. But in MVC controller action method (Result)  must be required. Now Next Step:
Add a Class: 
After that complete code here: 
  1. namespace MyFirstWebAPI.Controllers  
  2. {  
  3.     public class ValuesController : ApiController  
  4.     {  
  5.         // GET api/values  
  6.         public IEnumerable<Customer> Get()  
  7.         {  
  8.             return new List<Customer>()  
  9.            {  
  10.            new Customer (){CustomerId=1, CustomerName="Amit"},  
  11.            new Customer(){CustomerId=2,CustomerName="Sumit"}  
  12.            };  
  13.         }  
  14.         // GET api/values/ 10  
  15.         public Customer Get(int id)  
  16.         {  
  17.             if (id == 1)  
  18.             {  
  19.                 return new Customer() { CustomerId = 1, CustomerName = "Amit" };  
  20.   
  21.             }  
  22.             else if (id == 2)  
  23.             {  
  24.                 return new Customer() { CustomerId = 2, CustomerName = "Sumit" };  
  25.   
  26.             }  
  27.             return null;  
  28.         }  
  29.     }  
  30. }   

Execute it now showing


When I typed url : localhost:1031/api/values then IEnumerable<Customer> Get() method. In this url I have not passed a particular customer id due to this reason it show all records of customer list.
And result will be shown like. 
For test it  we can use Fiddler.
Fiddler:  
Fiddler is a Web Debugging Proxy which logs all HTTP(S) traffic between your computer and the Internet. Fiddler allows you to inspect traffic, set breakpoints, and "fiddle" with incoming or outgoing data. Fiddler includes a powerful event-based scripting subsystem, and can be extended using any .NET language. It also return output in XML or JSON format. 

No comments

Powered by Blogger.