Remoting Configuration Files and the new Operator
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I'm using Remoting with Configuration Files on the server and on the client. I've read that after RemotingServices.Configure(filename) I can use the new operator to get the remoted object from the server. But how does the compiler know to get the remoting object from the server and not simply creates a new object of the RemotableClass? RemotingServices.Configure("Client.config") RemotableClass rem = new RemotableClass(); Thanks.