G Guest Jun 4, 2004 #1 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?
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?
C Christopher Wells Jun 4, 2004 #2 Aaron said: Is it possible to create a Windows Service that will allow .NET Click to expand... 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).
Aaron said: Is it possible to create a Windows Service that will allow .NET Click to expand... 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).