Think with Enlab

Diving deep into the ocean of technology

Stay Connected. No spam!

How IIS Processes ASP.NET Core HTTP Request

 

Have you ever wondered what happens under the hood when you make an API call to your ASP.NET Core application hosted in IIS? Your request is passed through 2 pipelines in IIS and ASP.NET Core to be processed before returning the response. This article explains how your request is processed and how you can use it to add more functionalities to your ASP.NET Core applications.

 

HTTP pipeline

According to Microsoft documentation about IIS architecture, the HTTP request is picked up from the kernel mode, passed to the user mode for processing that results in a new IIS worker process (w3wp.exe) serving that HTTP request. Here are the steps:

 

HTTP Request Processing in IIS

 

  1. When a client browser initiates an HTTP request for a resource on the webserver, HTTP.sys intercepts the request

  2. HTTP.sys contacts the WAS to obtain information from the configuration store

  3. WAS requests configuration information from the configuration store, applicationHost.config

  4. The WWW Service receives configuration information, such as application pool and site configuration

  5. The WWW Service uses the configuration information to configure HTTP.sys

  6. WAS starts a worker process for the application pool to which the request was made

  7. The worker process processes the request and returns a response to HTTP.sys

  8. The client receives a response

Source: Introduction to IIS Architecture - Microsoft documentation

 

After step 6, your ASP.NET core code is executed by either the IIS worker process itself or by a Kestrel server. The HTTP response is returned to HTTP.sys once done processing. HTTP.sys then returns to the client browser. 

Microsoft uses ASP.NET Core Module, a native IIS module, to plug into the pipeline to either host your ASP.NET Core app inside the IIS worker process (in-process hosting model) or to forward HTTP requests to a backend ASP.NET Core app running the Kestrel server (out-of-process hosting model).

 

In-process hosting model

The in-process hosting model is the default hosting model for all apps built with ASP.NET Core 2.2 or later. In the in-process hosting model, what ASP.NET Core Module does is to load the CoreCLR and calls the Program.Main method to bootstrap your app’s logic. It then handles the lifetime of the IIS native request.

 

In-process hosting model

Source: Host ASP.NET Core on Windows with IIS - Microsoft documentation

 

  • From the above diagram, it is clear that your app’s logic takes in the HttpContext produced by IISHttpServer which is responsible for converting the native HTTP request to managed before passing the ASP.NET Core middleware pipeline. 

  • The middleware pipeline handles the request and passes it on as an HttpContext instance to your app’s logic. 

  • The IISHttpServer passes your app’s response back to IIS which then forwards it back to the client initiating the request. 

All of this happens right in the same IIS worker process, so the best performance is achieved.

Make sure to call the UseIIS method when configuring your application, and to explicitly specify the in-process hosting model in the web.config file as below:

<system.webServer>
<aspNetCore processPath="dotnet" hostingModel="InProcess" />
</system.webServer>

 

To verify, check the response header to make sure it’s Microsoft-IIS, not Kestrel.

 

response header - Microsoft-IIS

 

Out-of-process hosting model

Unlike the in-process hosting model, in the out-of-process hosting model, your app’s logic runs in a dotnet.exe process separate from the IIS worker process as follows:

 

Out-of-process hosting model

Source: Host ASP.NET Core on Windows with IIS - Microsoft documentation

 

  • The ASP.NET Core Module handles the dotnet.exe process management and forwards the HTTP request to the Kestrel server. 

  • The Kestrel server picks up the request from ASP.NET Core Module to forward into the ASP.NET Core middleware pipeline. 

  • The middleware pipeline handles the request and passes it on as an HttpContext instance to your app’s logic. 

  • The Kestrel receives the app’s response to pass back to IIS which forwards it back to the client initiating the request. 

To deploy your application using an out-of-process hosting model, specify it in your web.conf file as below:

<system.webServer>
<aspNetCore processPath="dotnet" hostingModel="OutOfProcess" />
</system.webServer>

 

Check the response header, it should be Kestrel.

 

response header - kestrel

 

ASP.NET core middleware pipeline

Once the request is passed to your app’s logic as an HttpContext instance, it undergoes the ASP.NET Core middleware pipeline as depicted in the below diagram where you write custom code to handle the request and return your expected response.

 

ASP.NET Middleware Pineline

Source: ASP.NET Core Middleware - Microsoft documentation

 

Middleware is a software component that can be written and plugged into the pipeline for processing your app’s logic before or after passing the request to the next component. 

Many built-in middleware components are ready to use. Understanding what they are for and their orders to use is important.

 

Final thoughts

To be considered as a serious ASP.NET developer, understanding the HTTP pipeline and ASP.NET Core Middleware pipeline is crucial. Therefore, I was trying to understand the fundamentals and connect the dots. This effort brought me some insights that hopefully will help you shorten your research journey.

 

Contact us

 

References

About the author

Vinh Tran

Hi, my name's Vinh and I'm the CEO of Enlab Software. I'm passionate about building world-class digital products, helping my team become mature in their careers, and creating an environment where people find purpose and meaning in life.

Up Next

March 21, 2024 by Dat Le
In the dynamic arena of startup development, an innovative trend is reshaping how entrepreneurs bring their...
Unveiling the Web Development Outsourcing Landscape
February 15, 2024 by Dat Le
In the era where digitalization dictates the tempo of business evolution, understanding the intricate fabric of...
Understanding different types of Angular Modules with practical examples
November 25, 2022 by Trong Ngo
In software development, grouping multiple specific functionalities or features into different modules is the key...
How to apply Test Driven Development with practical examples
June 22, 2022 by Tuan Do
Over the last few years, test-driven development (a.k.a. TDD) has grown in popularity. Many programmers...
Roll to Top

Can we send you our next blog posts? Only the best stuffs.

Subscribe