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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top