|
summaries and tech views for new developers C#,asp.net for web\mobile development,databases,iis6 and more.
Creating this site was an idea that popped up after some programing years,
when you have to get back to the same things you all ready forgot,
while new stuff is arriving to town.
In this site you can find summaries on tech stuff im into,
so for a stable wide base knowledge pyramid ,enjoy!!
|
|
IIS 6 server pipeline
HttpRequest from a browser was sent to the server,the Http.sys which is a kernal-mode operating system driver queue the request in a table
of the relevant w3wp.exe process.
the w3wp.exe is a process of an application pool that the virtual directory(your site) is assigned to,
and tells to the http.sys to queue requests for the address of your site.
so the w3wp.exe takes the request and looks to ISAPI table that holds file extension to dll,
in a aspx/mx/ax/hx/cx... case it will call aspnet_isapi.dll which handles the request with the ASP.NET HTTP Runtime,
that returns the response.
|