calling methods in a running windows service

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

Guest

Is it possible to create a Windows Service that will allow .NET applications to call it's methods and get returned values? If so, how is it done?
 
Aaron said:
Is it possible to create a Windows Service that will allow .NET
applications to call it's methods and get returned values? If so, how is it
done?

You can use .NET to create the service.

Then you can use ".NET Remoting" to let a client application call methods
that are running in the service (and get values returned by those methods).
 
Back
Top