remoting in .NET

  • Thread starter Thread starter VPS
  • Start date Start date
V

VPS

Supposing that i am using remoting using singleton class.Now assuming that
10 clients are requesting the object(since singleton creates only one
instance for all the requests) at the same time.

How does .NET handles such situation?
 
..NET does not, your code does. If you're using a singleton then you must
implement some sort of pooling system that services requests.

There are many samples out there that show how to do this; codeproject.com
is one good site for this type of sample.
 
Back
Top