c# Remoting to Windows Service

  • Thread starter Thread starter Sharon Gorev
  • Start date Start date
S

Sharon Gorev

Is it possible to use C# windows Service as the remote class?
It supposed to inherit both
System.ServiceProcess.ServiceBase
And
MarshalByRefObject

Thank you
Sharon
 
You will not be able to use the class representing the service as a remoting
class and this is probably not what you want after all. But you can use some
other remoting class (serializable or inherited from MarshalByRefObject) to
communicate with your service through remoting.

Regards, Jakob.
 
Back
Top