.Net Remoting mystery
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
Hi I have been reading up on .Net Remoting for some past days. What I understood was: 1. Create a remotable object. 2. Create a listener referencing that remotable object. 3. Create a client referencing that remotable object. 4. Use config files to indicate where the object resides. 5. Start the listener. 5. Start the client. To make sure that I was using the server's version of the Remote object, I maintained the interface, but the changed the implementation. The problem is, it still shows the implementation from the client! I am using http as the channel, port no=8888 deployed the client exe on a remote machine and gave my machine's url as the remote object location. What am I doing wrong?
Shreekar