N
Navin Mishra
1. Is maxIothreads parameter used still in IIS 6 ? For processing web
service requests, I don't see ASp.NET AvailableIOThreads going down ? If I
use another web service from my web service, would IO thread be used or
worker thread ?
2. My web service is used by another web service(A) which sends a one-way
request to my web service and I want to free up that consumer web service A
as soon as possible. So, I use ThreadPool.QueueUserWorkItem to qeuee request
for procssing. I see the thread pool thread is the SAME as the request
thread used by A web service. Is that normal ? Is the web service A really
freed-up ?
3. Is invoking a web service asynchronously a good idea as it would still
use a thread from thread pool and petform thread context switch ?
Thanks in advance and regards
Navin
service requests, I don't see ASp.NET AvailableIOThreads going down ? If I
use another web service from my web service, would IO thread be used or
worker thread ?
2. My web service is used by another web service(A) which sends a one-way
request to my web service and I want to free up that consumer web service A
as soon as possible. So, I use ThreadPool.QueueUserWorkItem to qeuee request
for procssing. I see the thread pool thread is the SAME as the request
thread used by A web service. Is that normal ? Is the web service A really
freed-up ?
3. Is invoking a web service asynchronously a good idea as it would still
use a thread from thread pool and petform thread context switch ?
Thanks in advance and regards
Navin