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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top