I have inherited a middle tier system with some multi-Threading issues.
Two different threads, running in the same method of the same instance of a class, are making the same calls to a .Net Remoting server...
Does the proxy on the client side know how to route the return values from the remoting server to the correct thread? Are separate client side proxies created for the calls from each thread, even though they're being called from the same instance? Does the proxy (or proxies) on the client side know how to route the return values from the remoting server to the correct thread?