aspnet_wp.exe and w3wp.exe [Article From:http://geekswithblogs.net/vivek/archive/2006/10/18/94436.aspx]
when compared with 5.0. In 5.0, the ASP.NET worker process is handed off control by the aspnet_isapi extension in IIS. The aspnet_isapi dll runs in the inetinfo.exe process in IIS and functions what is known as the CLR host (a CLR host is the piece of unmanaged code which is responsible for loading the CLR into the memory). So aspnet_isapi “hands over” the processing to the worker process named aspnet_wp.exe, where the request passes through a series of HttpModules and an HttpHandler.
But in IIS 6.0, there is a driver named http.sys which listens to all the incoming requests (aspnet_isapi.dll is not in the picture at this point). The moment an ASP.NET specific request comes in, this driver starts an IIS 6.0 worker process (which is not related to ASP.NET at all) named w3wp.exe. This process now loads the aspnet_isapi.dll (CLR host) and the request follows through a similar sequence of HttpModules and HttpHandlers.
So the important thing to note here is that w3wp.exe is not an ASP.NET worker process (unlike aspnet_wp.exe) but instead specific to IIS 6.0.
IIS6.0与ASP.NET进程解析
本文解析了IIS6.0中HTTP请求处理流程,特别是针对ASP.NET应用的变化。阐述了http.sys驱动如何接管请求并启动w3wp.exe进程,以及该进程如何加载aspnet_isapi.dll来处理请求。
193

被折叠的 条评论
为什么被折叠?



