Remoting or not

jespeirer

Newcomer
Joined
Jul 21, 2003
Messages
4
I want to execute a C# program remotely on a server. Execution would start from a client program which would in turn start the server program. The current plan is to modify the current server exe I have to use .Net remoting. Is this the best plan? If so, can someone point me to a resource that can explain remoting clearly? Is there a better solution?

Thanks
 
You don't need remoting to run a program on a different machine. Look into servicecontrollers where you can specify the machine name and the service to run. Or look at the process class which allows you to do the basically the same thing.

-lp
 
Back
Top