Internal Communication

  • Thread starter Thread starter GTi
  • Start date Start date
G

GTi

I have a C# and a C++ (.NET 2.0) NT Service program running on a computer.
How can I send smaal messages between this programs (flags etc).
And if I decide to splitt this programs on two computers I still need
to send messages. What can I use? (not disk/file based).
 
Static classes
Remoting
Sockets

Static classes a really aren't an option as the services would be in
seperate processes(or atleast app domains). Remoting, sockets, pipes, even
mailslots if you are wiling to write the interop code would work. For simple
work I'd lean towards remoting.
 
Back
Top