Thanks vs1784,
Is it true that the Asp.net ThreadPool for current requests contains only 25 managed threads and if there are already 25 managed threads running, the ThreadPool queue all incoming requests which are in a waiting state.
I can use Webservices if you want, but I can do the same with my asynchronous page:
AddOnPreRenderCompleteAsyn
new BeginEventHandler(MyBeginM
new EndEventHandler (MyEndMethod)
);
The job is completed asynchronously like a webservice.
I can't find anything about the asynchronous page threads management.
If it's about 25 threads managed in a ThreadPool, I'm afraid because I need to run much more than 25 long running processes asynchronously ( near 500 ).
Main Topics
Browse All Topics





by: vs1784Posted on 2008-02-06 at 13:43:50ID: 20836050
For asynchronous pprocesses you can use Web Services or Remoting i think. However Web Services is a better option.
Number depends on the CPU power you have.
Thanks