How to Host ASP.Net Web API on IIS Server

Introduction

In this article I show how to host our ASP .NET Web API on an Internet Information Services (IIS) server. This is useful when we want to host our Web API application in a local host.

Internet Information Services (IIS)

IIS is the acronym for Internet Information Services. It is the set of feature extension modules that are created by Microsoft. IIS is an integral part of the Windows Server products. It supports the Hyper Text Transfer Protocol (HTTP), File Transfer Protocol (FTP), Simple Mail Transfer Protocol (SMTP) etc. IIS is not turned on automatically when Windows is installed.

Benefits of IIS Hosting

  • When we host the Web API in IIS , it is deployed and managed like other IIS applications.
  • When we host the application on IIS, it can provide the process activation and recycling capabilities that increase the reliability of the hosted application.
  • The Web API is hosted on IIS, that simplifies the development and deployment of hosted services.

Now I will define the procedure of hosting the Web API on an IIS server.

Step 1

First open IIS. We can start it from the Start menu; enter "inetmgr" into the search box. The image looks like this:

 How to Host ASP.Net Web API on IIS Server_第1张图片

We can open it using the Control Panel.

  • In the "Control Panel".
  • Click on "Administrative Tools" -> "Internet Information Services (IIS) manager".
  • The image is displayed in the following picture.


If you are not able to see the IIS manager then your system might not have IIS installed. For the installation follow this procedure:

  • Open the "Control Panel".
  • "Programs and Feature" -> "Turn Window features on or off".

How to Host ASP.Net Web API on IIS Server_第2张图片

  • There is open the "Windows Feature" window in "tree view".
  • There are checkboxes for installation; select the checkboxes.

How to Host ASP.Net Web API on IIS Server_第3张图片

Step 2

When you will open the Internet Information Services (IIS) manger, the window looks like this:

How to Host ASP.Net Web API on IIS Server_第4张图片

  • Now, right-click on the sites.
  • "Sites" -> "Add Web Site".

How to Host ASP.Net Web API on IIS Server_第5张图片

Open a window. It looks likes this:

How to Host ASP.Net Web API on IIS Server_第6张图片

In this window write the "Site name" here the site name is "Testing" and  provide the Physical path.

When we click on the "Ok" button, a alert box is opened. It display the information about the port; the default port is "80" for the IIS website and if you want to change it then click on the "NO" button.


And change the port. Here I will provide the port "8080". And now click on the "OK" button.

How to Host ASP.Net Web API on IIS Server_第7张图片

Now a window is opened that looks like this:


When we click on the Testing site from the Sites, then it opens as:


Step 3

Now we check the "Advanced setting" from the "right panel". And modify some settings.

How to Host ASP.Net Web API on IIS Server_第8张图片

 

Step 4

Now edit the "Basic settings" in the "Edit Application Pool" in the right panel. In it we select the ".NET Framework version" that is ".NET Framework v4.0.30319" and "Managed pipeline mode" as "Integrated".

 How to Host ASP.Net Web API on IIS Server_第9张图片

Step 5

In this step we are ready to browse our application.

  • Right-click on your website.
  • Select "Manage Web Site" -> "Browse".


  • The application is hosted. There is my application "Testing" Host at "8080" port that looks like this:

How to Host ASP.Net Web API on IIS Server_第10张图片

 

Step 6

My application works on Fiddler so we write the URL "http://localhost:8080/api/products". Open the fiddler and click on the Compose tab and enter the URL:

 How to Host ASP.Net Web API on IIS Server_第11张图片

 

The output looks like this:

你可能感兴趣的:(How to Host ASP.Net Web API on IIS Server)