Remote execution of programs

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My goal is to write an application in which I need to execute some programs
on remote clients. The clients should be listening to the server machine all
the time and as soon as a request comes, they would execute a set of
programs.

The important thing is that the server should know what of those programs
were completed successfully and what failed.

I was wondering what is the best way for me to do this. Would .NET remoting
help me here or is there something in ASP.NET which will enable me to do this
quickly.

Thanks,
Kapil
 
My goal is to write an application in which I need to execute some
programs on remote clients. The clients should be listening to the
server machine all the time and as soon as a request comes, they would
execute a set of programs.

The important thing is that the server should know what of those
programs were completed successfully and what failed.

I was wondering what is the best way for me to do this. Would .NET
remoting help me here or is there something in ASP.NET which will
enable me to do this quickly.


Take a look at Remoting. Otherwise you can just create a socket listener on
the client machines.
 
Back
Top