Enabling Cross Origin Request Sharing in ASP.Net Web API

Introduction

This article explains Cross Origin Request Sharing and how to enable it in our ASP.NET Web API application.

Introduction about CORS

Cross Origin Resource Sharing (CORS) allows the server to serve a resource to the permitted origin domains. It is used for defining the way by which the server and browser can interact and whether or not cross origin requests are allowed. It is a W3C standard.

Here we create two projects. The first one is "CrosEnable" that hosts the Web API controller. And the second is "ClienApp" that invokes the web services. Each application is hosted in a different domain. An AJAX request from "ClientApp" to "CorsEnable" is called the cross-origin request.

chk12.jpg

Creating the Web API project to enable the CORS

Step 1

To create the web application:

  • Start Visual Studio 2012.
  • Click on "New Project", select "template" -> "Visual C#" -> "Web".
  • Choose "ASP.NET MVC Application4" and change the name of the application.
  • Click onthe "OK" button.
chk10.jpg

From the new ASP.NET MVC4 Project:

chk11.jpg

  • Select the "Basic" .
  • Click on the "OK" button.

Step 2

Create a controller class "CheckController.cs".

  • In the "Solution Explorer".
  • Right-click on the "Controller Folder" -> "Add" -> "Controller".
  • Change the name and select the "Empty API controller" from the Template.
chk13.jpg
  • Click on the "OK" button.

Write this code in the "CheckController.cs" class:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using System.Web.Cors;

{

    public class CheckController : ApiController

    {

       

            public HttpResponseMessage Get()

            {

                return new HttpResponseMessage()

                {

                    Content = new StringContent("GET: Check new Message")

                };

            }

 

            public HttpResponseMessage Post()

            {

                return new HttpResponseMessage()

                {

                    Content = new StringContent("POST:  Check new Message")

                };

            }

 

            public HttpResponseMessage Put()

            {

                return new HttpResponseMessage()

                {

                    Content = new StringContent("PUT:  Check new Message")

                };

            }

        }

    }

 

Step 3

Now execute the application; press F5. Then navigate to the URL http://localhost:44854/api/check. It looks likes this:

output.jpg

Step 4

Now add another "MVC4 application project" with the "Basic" project template.

  • In the "Solution Explorer".
  • Right-click on the "Solution'CorsEnable'(Project 1)" then select "Add" -> "New Project".
  • Select MVC4 web application with "Basic" template.

Step 5

Create the controller class in the second project using the following:

  • In the "Solution Explorer".
  • Right-click on the "Controller Folder" then select "Add" -> "Controller".
  • Change the name and select the "Empty MVC controller" from the Template.
chk14.jpg
  • Click on the "OK" button.

Now "Right-click" on the "Index method" and click on "View Index".

chk1.jpg

There is open a window without perform any changes click on "OK" button. Open the "index.cshtml" and write this code.

chk2.jpg

@{

    ViewBag.Title = "Index";

}

 

<h2>Test Methods</h2>

<div>

    <select id="method">

        <option value="get">GET</option>

        <option value="post">POST</option>

        <option value="put">PUT</option>

    </select>

    <input type="button" value="Click Me" onclick="sendRequest()" />

    <span id='value1'>(Output)</span>

</div>

 

@section scripts {

<script>

    var serviceUrl = 'http://localhost:44854/api/check'; // Replace with your URI.

 

    function sendRequest() {

        var method = $('#method').val();

 

        $.ajax({

            type: method,

            url: serviceUrl

        }).done(function (data) {

            $('#value1').text(data);

        }).error(function (jqXHR, textStatus, errorThrown) {

            $('#value1').text(jqXHR.responseText || textStatus);

        });

    }

</script>

}

Step 6

Now again execute the project "ClientApp". It is looks like this:

chk3.jpg

Then click on the "Click Me" button. Then it shows this output.

chk4.jpg

Step 7

Now enable the Cross Origin Request Sharing (CORS).

First we install the "MicroSoft.ASPNet.WebApi.Cros".

  • Go to the Tools menu.
  • Select "Library Package Manager" -> "Package Manager Console".
  • Write this command "PM> Install-Package Microsoft.AspNet.WebApi.Cors.ko -Pre".

In the "ClientApp", open the WebAPIConfig file as in the following:

  • In the "Solution Explorer".
  • In the "App_Start" -> "WebApiConfig.cs" add the following code.

using System;

using System.Collections.Generic;

using System.Linq;

using System.Web.Http;

 

namespace ClientApp

{

    public static class WebApiConfig

    {

        public static void Register(HttpConfiguration config)

        {

            config.EnableCors();

 

            config.Routes.MapHttpRoute(

                name: "DefaultApi",

                routeTemplate: "api/{controller}/{id}",

                defaults: new { id = RouteParameter.Optional }

            );

        }

    }

}

 

Step 8

In the Check Controller We add this line of code for enabling the CORS.

  [EnableCors(origins: "http://localhost:44854", headers: "*", methods: "*")]

Use these namespaces.

using System.Web.Cors;

using System.Web.Http.Cors;

Step 9

Now to execute the application press F5. The output is like this.

 chk6.jpg


Select the Get Method and click on the button.

chk7.jpg


Select the Post Method and click on the button.

chk8.jpg


Select the Put Method and click on the button.

chk9.jpg

Up Next
    Ebook Download
    View all
    Learn
    View all