I have a C# windows service running on a local machine, and a webservice running elsewhere (may or maynot be local). Is it possible to pass data back and forth between the webservice and the windows service? I've looked into using the TcpChannel remoting stuff, but there aren't any really good examples.
Say for instance, I want to pass a string from a webservice to a windows service, and modify it within the windows service, then pass the modified string back to the webservice, how would I go about that?
Thanks
Start Free Trial