Asynchronous Remoting calls - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T05:35:52Zhttp://stackoverflow.com/feeds/question/10670http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/10670/asynchronous-remoting-calls3Asynchronous Remoting callsCVertex2008-08-14T04:35:16Z2008-08-15T23:37:46Z
<p>We have a remoting singleton server running in a separate windows service (let's call her RemotingService). The clients of the RemotingService are ASP.NET instances (many many).</p>
<p>Currently, the clients remoting call RemotingService and blocks while the RemotingService call is serviced. However, the remoting service is getting complicated enough (with more RPC calls and complex algorithms) that the asp.net worker threads are blocked for a significantly long time (4-5 seconds).</p>
<p>According to <a href="http://msdn.microsoft.com/en-us/magazine/cc164128.aspx" rel="nofollow">this msdn article</a>, doing this will not scale well because an asp.net worker thread is blocked for each remoting RPC. It advises switching to async handlers to free up asp.net worker threads.</p>
<blockquote>
<p>The purpose of an asynchronous handler
is to free up an ASP.NET thread pool
thread to service additional requests
while the handler is processing the
original request.</p>
</blockquote>
<p>This seems fine, except the remoting call still takes up a thread from the thread pool.
Is this the same thread pool as the asp.net worker threads? </p>
<p><strong>How should I go about turning my remoting singleton server into an async system such that I free up my asp.net worker threads?</strong></p>
<p>I've probably missed out some important information, please let me know if there is anything else you need to know to answer the question.</p>
http://stackoverflow.com/questions/10670/asynchronous-remoting-calls/10714#107140Answer by Vaibhav for Asynchronous Remoting callsVaibhav2008-08-14T05:53:40Z2008-08-14T05:53:40Z<p>The idea behind using the ThreadPool is that through it you can control the amount of synchronous threads, and if those get too many, then the thread pool automatically manages the waiting of newer threads.</p>
<p>The Asp.Net worked thread (AFAIK) doesn't come from the Thread Pool and shouldn't get affected by your call to the remoting service (unless this is a very slow processor, and your remoting function is very CPU intensive - in which case, everything on your computer will be affected).</p>
<p>You could always host the remoting service on a different physical server. In that case, your asp.net worker thread will be totally independent of your remoting call (if the remoting call is called on a separate thread that is).</p>
http://stackoverflow.com/questions/10670/asynchronous-remoting-calls/12892#128920Answer by dp for Asynchronous Remoting callsdp2008-08-15T23:37:46Z2008-08-15T23:37:46Z<p>Take a look at Asynchronous Pages in ASP.NET: <a href="http://msdn.microsoft.com/en-us/magazine/cc163725.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc163725.aspx</a>.</p>