.NET interprocess communication

  • Thread starter Thread starter Jeroen
  • Start date Start date
J

Jeroen

Question,

We are in the process of creating a windows service in C#. Another GUI
application, also written in C# has to communicate from another machine to
this service. What is the best technique to use for interprocess
communications in this situation?

Thanks in advance,
Jeroen
 
Hi Jeroen,

There are only two managed ways: either Remoting or Sockets.
I would use Remoting.
 
Back
Top