Using .Net remoting I create singleton serverside object that has some methods.
When Clients call the methods, how can I enforce concurrency in the sense that each
Method is called at a time and if other client call the same method, have it be put in the queue.
It there any way to do it through static methods or thread safe way???

Thank you