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).
 

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