Beginner’s Guide: How IIS Process ASP.NET Request March 14, 2010
Posted by Abhijit Jana in ASP.NET, General, IIS.Tags: ASP.Net, IIS, iis request processing
trackback
Introduction
When request come from client to the server a lot of operation is performed before sending response to the client. This is all about how IIS Process the request. Here I am not going to describe the Page Life Cycle and there events, this article is all about the operation of IIS Level. Before we start with the actual details, let’s start from the beginning so that each and everyone understand it’s details easily. Please provide your valuable feedback and suggestion to improve this article.
What is Web Server ?
When we run our ASP.NET Web Application from visual studio IDE, VS Integrated ASP.NET Engine is responsible to execute all kind of asp.net requests and responses. The process name is “WebDev.WebServer.Exe” which actually takw care of all request and response of an web application which is running from Visual Studio IDE.
Now, the name “Web Server” comes into picture when we want to host the application on a centralized location and wanted to access from many locations. Web server is responsible for handle all the requests that are coming from clients, process them and provide the responses.
What is IIS ?
IIS (Internet Information Server) is one of the most powerful web servers from Microsoft that is used to host your ASP.NET Web application. IIS has it’s own ASP.NET Process Engine to handle the ASP.NET request. So, when a request comes from client to server, IIS takes that request and process it and send response back to clients.
Request Processing :
Hope, till now it’s clear to you that what is Web server and IIS is and what is the use of them. Now let’s have a look how they do things internally. Before we move ahead, you have to know about two main concepts
1. Worker Process
2. Application Pool
Worker Process: Worker Process (w3wp.exe) runs the ASP.Net application in IIS. This process is responsible to manage all the request and response that are coming from client system. All the ASP.Net functionality runs under the scope of worker process. When a request comes to the server from a client worker process is responsible to generate the request and response. In a single word we can say worker process is the heart of ASP.NET Web Application which runs on IIS.
Application Pool: Application pool is the container of worker process. Application pools is used to separate sets of IIS worker processes that share the same configuration. Application pools enables a better security, reliability, and availability for any web application. The worker process serves as the process boundary that separates each application pool so that when one worker process or application is having an issue or recycles, other applications or worker processes are not affected. This makes sure that a particular web application doesn’t not impact other web application as they they are configured into different application pools.
Application Pool with multiple worker process is called “Web Garden”.
Now, I have covered all the basic stuff like Web server, Application Pool, Worker process. Now let’s have look how IIS process the request when a new request comes up from client.
If we look into the IIS 6.0 Architecture, we can divided them into Two Layer
1. Kernel Mode
2. User Mode
Now, Kernel mode is introduced with IIS 6.0, which contains the HTTP.SYS. So whenever a request comes from Client to Server, it will hit HTTP.SYS First.
Now, HTTP.SYS is Responsible for pass the request to particular Application pool. Now here is one question, How HTTP.SYS comes to know where to send the request? This is not a random pickup. Whenever we creates a new Application Pool, the ID of the Application Pool is being generated and it’s registered with the HTTP.SYS. So whenever HTTP.SYS Received the request from any web application, it checks for the Application Pool and based on the application pool it send the request.
So, this was the first steps of IIS Request Processing.
Till now, Client Requested for some information and request came to the Kernel level of IIS means at HTTP.SYS. HTTP.SYS has been identified the name of the application pool where to send. Now, let’s see how this request moves from HTTP.SYS to Application Pool.
In User Level of IIS, we have Web Admin Services (WAS) which takes the request from HTTP.SYS and pass it to the respective application pool.
When Application pool receive the request, it simply pass the request to worker process (w3wp.exe) . The worker process “w3wp.exe” looks up the URL of the request in order to load the correct ISAPI extension. ISAPI extensions are the IIS way to handle requests for different resources. Once ASP.NET is installed, it installs its own ISAPI extension (aspnet_isapi.dll) and adds the mapping into IIS.
Note : Sometimes if we install IIS after installing asp.net, we need to register the extension with IIS using aspnet_regiis command.
When Worker process loads the aspnet_isapi.dll, it start an HTTPRuntime, which is the entry point of an application. HTTPRuntime is a class which calls the ProcessRequest method to start Processing.
When this methods called, a new instance of HTTPContext is been created. Which is accessible using HTTPContext.Current Properties. This object still remains alive during life time of object request. Using HttpContext.Current we can access some other objects like Request, Response, Session etc.
After that HttpRuntime load an HttpApplication object with the help of HttpApplicationFactory class.. Each and every request should pass through the corresponding HTTPModule to reach to HTTPHandler, this list of module are configured by the HTTPApplication.
Now, the concept comes called “HTTPPipeline”. It is called a pipeline because it contains a set of HttpModules ( For Both Web.config and Machine.config level) that intercept the request on its way to the HttpHandler. HTTPModules are classes that have access to the incoming request. We can also create our own HTTPModule if we need to handle anything during upcoming request and response.
HTTP Handlers are the endpoints in the HTTP pipeline. All request that are passing through the HTTPModule should reached to HTTPHandler. Then HTTP Handler generates the output for the requested resource. So, when we requesting for any aspx web pages, it returns the corresponding HTML output.
All the request now passes from httpModule to respective HTTPHandler then method and the ASP.NET Page life cycle starts. This ends the IIS Request processing and start the ASP.NET Page Lifecycle.
Conclusion
When client request for some information from a web server, request first reaches to HTTP.SYS of IIS. HTTP.SYS then send the request to respective Application Pool. Application Pool then forward the request to worker process to load the ISAPI Extension which will create an HTTPRuntime Object to Process the request via HTTPModule and HTTPHanlder. After that the ASP.NET Page LifeCycle events starts.
This was just overview of IIS Request Processing to let Beginner’s know how the request get processed in backend. If you want to learn in details please check the link for Reference and further Study section.
Reference and Further Study
A low-level Look at the ASP.NET Architecture
IIS Architecture
Please share your suggestion and feedback.







very good article…..
This is good article and Thannks very much
Dear Abhijit,
Thank you for the great article. I must accept that I learnt something new about IIS request processing from this article that I didn’t know earlier.
Awesome article!
Keep it up and take care.
Regards,
Sheo Narayan
Thank you so much Sheo !!
Great Article Sir. There were lot of new stuff, I came to know through this.
I would like to know, how you create these *sexy* workflow diagrams. I mean which software you use?
Thanks | Thats are done by MS Powerpoint only !!!
[...] If you want to know more details on How IIS Process the request please read one of my article over “How IIS Process ASP.NET Request ?” [...]
Hi Abhijit,
Really this is very good articles. It helps a lot for beginers.
Appreciate for your efforts and sharing the knowledge to dotnet community.
I know personally, how much hard to prepare the documents.
Regards,
Ramesh Babu
Thanks Ramesh !!
[...] If you want to know more details on How IIS Process the request please read one of my article over “How IIS Process ASP.NET Request ?” [...]
[...] To know more about how fundamentals How IIS process ASP.NET Request you can read one of my article How IIS Process ASP.NET Request [...]
[...] of HttpApplication and HttpModuleCollection Class. If we quickly recall the IIS Process Request [One detailed Article], when a request reaches to worker Process from client browser, First of all Worker process is [...]
Good information. Thanks for sharing.
[...] http://abhijitjana.net/2010/03/14/beginner%E2%80%99s-guide-how-iis-process-asp-net-request/ This entry was posted in Uncategorized. Bookmark the permalink. ← Difference between Web Farm and Web Garden? LikeBe the first to like this post. [...]
Hi! Congratulations! All good devellopers should know about this.
Thank you so much.
Thanks !
[...] To know more about how fundamentals How IIS process ASP.NET Request you can read one of my article How IIS Process ASP.NET Request [...]
[...] of HttpApplication and HttpModuleCollection Class. If we quickly recall the IIS Process Request [One detailed Article], when a request reaches to worker Process from client browser, First of all Worker process is [...]
Thanks Abhijeet,
It is very nice article. It is really helpful for understanding the IIS level request processing.
Regards,
Pravin Shimpi
Really good article…easy way out to explain iis request/response flow..very simplified way to communicate..Thanks
[...] To know more about IIS Request Process, here is one of my aticle How IIS Process ASP.NET Request [...]
Very informative!! Continue writing article like this that covers the basics!!
Nice article
Abhijit I would like to see video for the same article.
if it is possible please reply me on my emailid
No, I don’t have any video for that. Recently I have presented a session at Microsoft User group Hyderabad on same topic in bit details, check here
http://abhijitjana.net/2011/02/27/download-ppt-asp-net-request-processing-internals-microsoft-user-group-hyderabad-community-meet-26-feb-2011/
thanks for the wonderful article please go on still hungry to learn and learn forever
Great Man, nice catch
thanks sir for this rich source of knowledge, it is really a beneficial for all.
It is good and very easy way to present this topic.It is very helpful for the begineers.
Awesome article!!!
Nothing more we can ask from the author Abhijit about ASP.net IIS cycle.
It’s very great absolutely clear, thanks Abhijit.
Hi Abhijit,
This was really very Good. I was really afraid about IIS because it was something which I didn’t understand ever but this time I got a good way of understanding it.
Thanks for writing this Awesome article.
Thanks,
Hi Abhijit,
This was really very Good. I was really afraid about IIS because it was something which I didn’t understand ever but this time I got a good way of understanding it.
Thanks for writing this Awesome article.
Thanks,
Awesome article……Its so informative and very good for beginners to learn without any confusion…..just follow it step by step……….I ll suggest it to my friends………..Thanks for the article one again…..
Excellent Explanation…
Great article !! Keep it up
This is really nice document. Thanks.
really great article it helps me lot
[...] takes care of each and individual request. If you are interested, please read one of my article, Beginner’s Guide: How IIS Process ASP.NET Request which talks about internal of ASP.NET Request Processing. Once the request done with HTTP Pipeline [...]
Really nice article…It helped me a lot to learn about ASP.Net request processing.
really awesome man…until now i dnt have a clear idea about this.. thanks a lot
I am very late to comment but this article is really great.
seems like it made my day!!
Praveen
Really a nice artical for all, excellent learning for beginners and refreshment for experts
Thanks Abhijit.
Sir this article is more helpful to me to understanding how the asp.net application life cycle……
It is awesome article with graphical figures…..
Please write this type of articles………
Thank u
srinubabu.ravilla@gmail.com
excellent article! it explains the concept in a very simple way.. easy to understand! thanks!
A very nice article abhijeet..thank you very much
Really so good. Thanks for this wonderful articles. In my language boole to mast wala
good one
Its great one & very helpfull.
Hi,
Its very good article for who are working on asp.net with IIs
easy to understand.
really very good and helpful.
Keep post this kind of articles.
nice artical and easy to understand.
keep post more articals in .net
really a very good article … Thanks a lot..
very easy and simple for the beginners.
i like it very much …you explained very wel
as a beginner its sooo simple to understand with this explanation
This is an ultimate explanation one can give on asp.net life cycle …..ULTIMATE..superb explanation..Hats off to U..:) ..I am lucky dat i got to read this article..Ever after reading soo many other articles i still had one or the other doubt running in my mind..But after reading yo article..Thanks to U..u cleared all my doubts..I am very very Happy today for i was longing for this kinda explanation..Thank U soo much once again..Keep writing such awesome articles..:)WISH U ALL GOOD LUCK..
Hi Manasa,
Great to see you liked it. Just to update you, I am going to speak on “Inside IIS Request Processing and ASP.NET Page Life Cycle” , on this Virtual Tech Days, 15th Dec.
I will be talking some more interesting stuff on this
you can register here for the same
http://www.virtualtechdays.com
Thanks Abhijit Jana.
You are rock.. Thanks for sharing (Web Application internal process) to everybody.
Gr8 Article..You know what a user wants to read..such a nice effort.
Keep going on.
Really its awesome article ….:)
Really very good article… Thanks Abhijit..
Really a very good article… Thanks Abhijit..
I LIKED THE ARTICLE VERY MUCH. ALL CONCEPTS ARE EXPLAINED IN VERY SIMPLE MANNER FOR A BEGINNER ALSO TO UNDERSTAND CONCEPTS WELL. IT HELPED ME A LOT TO CLEAR MY CONCEPTS.
excellent article! it explains the concept in a very simple way.. easy to understand! thanks!
Hi Abhijit,
This is really a good article of HTTP request pipeline. But i have one question… WAS is really stand on Web Admin Services(WAS) or Windows Process Activation Service (WAS)? Can you clear me.
Govind, that should be Windows Process Activation Service (WAS) . I will update the article along with my latest talk on In-depth of IIS Request processing.
You can check it here http://www.microsoft.com/en-in/showcase/details.aspx?uuid=11183b99-146d-4a57-9481-98a815691579
Thanks Abhijeet,
It is very nice article. It is really helpful for understanding the IIS level request processing.
Regards,
Arindam M
Very nice article for beginners..Keep writing:)
HI Abhijit,
can you explain it a bit, it wud be reallt helpful.
Its really a wonderful article. Thanks a lot.
It wud be really great, if you can give me more clear understanding on Application Pool and Worker process. Actually my biggest confusion in .net is on the working of Worker process. and the architecture of application pool aaplication domain, worker process and threads
Thanks a lot
Hi Veenu,
Check out my webcast on the same here. It has details discussion. http://www.microsoft.com/en-in/showcase/details.aspx?uuid=11183b99-146d-4a57-9481-98a815691579
It’s based on the URL/host name of the request I think. Am I correct?