How can I limit access to a particular class to one caller at a time in a web service?
- by MusiGenesis
I have a web service method in which I create a particular type of object, use it for a few seconds, and then dispose it. Because of problems arising from multiple threads creating and using instances of this class at the same time, I need to restrict the method so that only one caller at a time ever has one of these objects.
To do this, I am…