show/hide this revision's text 4 added 41 characters in body

Take your pick:

  • files
  • named pipes <-- My recommendation
  • shared memory
  • sockets
  • COM
  • Windows messages

Why named pipes?

  • Gives you a FIFO way of working for free (like sockets, but not like shared memory)
  • Can easily communicate both ways
  • Well supported on all platforms
  • Easy to use
  • Reliable data passing and delivery
  • Can be blocking and non blocking
  • Can read data without removing (unlike sockets)
  • Can be expanded to include a third app easily.

In .Net just use System.IO.Pipes.

In C++ use CreateNamedPipe and CreateFile.

show/hide this revision's text 3 added 26 characters in body

Take your pick:

  • files
  • named pipes <-- My recommendation
  • shared memory
  • sockets
  • COM
  • Windows messages

Why named pipes?

  • Gives you a FIFO way of working for free (like sockets, but not like shared memory)
  • Can easily communicate both ways
  • Well supported on all platforms
  • Easy to use
  • Reliable data passing and delivery
  • Can be blocking and non blocking
  • Can read data without removing (unlike sockets)
  • Can be expanded to include a third app easily.
show/hide this revision's text 2 added 52 characters in body

Take your pick:

  • files
  • named pipes <-- My recommendation
  • shared memory
  • sockets
  • COM
  • Windows messages

Why named pipes?

  • Gives you a FIFO way of working for free (like sockets, but not like shared memory)
  • Can easily communicate both ways
  • Well supported on all platforms
  • Easy to use
  • Reliable
  • Can be blocking and non blocking
  • Can read data without removing (unlike sockets)
  • Can be expanded to include a third app easily.
show/hide this revision's text 1