Transmitting data from one process to another.

  • Thread starter Thread starter Peter Strøiman
  • Start date Start date
P

Peter Strøiman

Hi.

I have a situation where I would like to stream data from one process to
another. I.e. I can write data to a stream in one process, and the read the
data from a stream in a different process.

I already have a solution running where I use a Tcp sockets to do the job.
Quite simple actually. But I wonder if there is a more efficient way if it's
running on the same computer?

Thanks in advance,
Pete
 
Sounds like a good way to me. There's always the more flexible way (i.e.
getting more than streamed information from one process to another) of using
the .NET Remoting architeture, but this might be a bit slowers than sockets.
 
Back
Top