how do you configure your windows iis to map a virtual directory to an isapi extension you've created. In other words my iis should recognize an url from that vd has to be processed by the isapi extension I've developed.
Alternatively to state my objective, I am looking for something on the following lines: Like for e.g. for asp.net applications the iis forwards the inbound request to some routines in the aspnet_isapi.dll which interacts with corresponding managed processes to do the job (viz serve the request). Here I am thinking the iis understands that the vd (corresponding to the inbound request) belongs to an asp.net application pool and hence forwards to the aspnet_isapi.dll
I am trying to achieve the same thing, but the iis should forward requests to my isapi extension...