tags:

views:

136

answers:

1

What is the mechanism by which the w3wp.exe process knows to start?

Any IIS gurus know the specifics about the internals?

+2  A: 

There's a handler registered with the IIS that spawns it when a resource supported by it is requested and delegates the request to the worker process.

Oliver Weichhold
Could you be a bit more specific about the handler?
Larsenal
Aspnet_isapi.dll - IIS script mappings associate ASP.NET file types with this ASP.NET ISAPI extension that runs inside Inetinfo.exe. It is responsible for forwarding requests to the ASP.NET worker process through an asynchronous named pipe. It also starts the worker process and performs health monitoring. The ISAPI extension contains no managed code and performs no request processing itself.Check out this page: http://msdn.microsoft.com/en-us/library/aa302436.aspx
Oliver Weichhold
@oliver Good link thank you
Preet Sangha