Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Remote Controlled Windows Application

0.00/5 (No votes)
1 Jul 2004 1  
How to let your Windows application be remote controlled

Introduction

This small Windows application shows how to make your application or part of it be controlled from remote machines. The demo application just can flip an image and this is also what several remote clients can do.

Background

Since most of the samples I found on Internet about remoting do let the .Net runtime create the marshalled object in the hidden background,
I had to find a way to create and marshal my objects programmatically to provide it with a reference to my applications interface. This is just what my application demonstrates.

It also demonstrates how to minimize the dependencies from server and clients by accessing the remote object over interfaces. Here is the design pattern for decoupling the objects with interfaces.

Using the code

The VS-Solution 'MyRemoteSampleApp.sln' holds the 3 projects: the application, the client and the remotable class.

  • MyServerApplication
  • MyClient
  • MyRemoteInterface

After starting 'MyServerApplication.exe' you can start as many clients 'MyClient.exe' as you like, which all connect to the same 'MyService' object.

Points of Interest

Create and marshal the object on server side in the applications 'Main()':

TcpChannel channel = new TcpChannel(8080);
ChannelServices.RegisterChannel(channel);

// Create a single marshalled object

MyServiceClass remService  = new MyServiceClass();
ObjRef obj = RemotingServices.Marshal(remService,"TcpService");

// Create appllications MainForm

MainAppForm frmMain = new MainAppForm();

// provide the marshalled object with a reference to the Applications interface

remService.theMainForm = ( IAppRemote) frmMain;

// start application

Application.Run(frmMain);
Connect to the remote object on client side:
// Interface reference

IMyService remServive = null;
...
...

// Get a TCP channel and register required service

ChannelServices.RegisterChannel(new TcpChannel());
WellKnownClientTypeEntry remotetype = new WellKnownClientTypeEntry(
  typeof(MyServiceClass),"tcp://localhost:8080/TcpService");
RemotingConfiguration.RegisterWellKnownClientType(remotetype);

// instantiates the proxy

remServive = new MyServiceClass();

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here