> From what I understdand aspnet_wp process is managed differently by IIS.
> You cannot run multiple processes on the same machine (the app isolation
[quoted text clipped - 10 lines]
>> Thanks,
>> Abhijit.
Jerry, this is true regarding the ISAPI DLL, but :
read here:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetsec/html/S
ecNetAP04.asp
...
Separate Application domains within the worker process (one per IIS virtual
directory, or in other words, one per ASP.NET Web application or Web
service) are used to provide isolation.
This is in contrast to classic ASP, where the application protection level,
configured within the IIS metabase determined whether the ASP application
should execute in process with IIS (inetinfo.exe), out of process in a
dedicated instance of Dllhost.exe, or in a shared (pooled) instance of
Dllhost.exe.
Important The process isolation level setting within IIS has no affect
on the way ASP.NET Web applications are processed.
Adriano
> Actually under IIS 5 there's an ISAPI extension running under whatever
> isolation you set your app to that sends the requests to be processed by
[quoted text clipped - 16 lines]
> >> Thanks,
> >> Abhijit.