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?

Re: calling methods in a running windows service by Christopher

Christopher
Fri Jun 04 14:47:57 CDT 2004

"Aaron" <adavis@mdtablet.com> wrote in message
news:31000840-F2C7-4D92-B9FE-0475E0277A7D@microsoft.com...
> 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).