Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want communicate between a parent and child process both written in C#. It should be asynchronous, event driven. I does not want run a thread in every process that handle the very rare communication.

What is the best solution for it?

share|improve this question

4 Answers

Anonymous pipes.

http://msdn.microsoft.com/en-us/library/bb546102.aspx

Use Asynchronous operations with BeginRead/BeginWrite and AsyncCallback.

share|improve this answer

I would suggest using the Windows Communication Foundation:

http://en.wikipedia.org/wiki/Windows_Communication_Foundation

You can pass objects back and forth, use a variety of different protocols. I would suggest using the binary tcp protocol.

share|improve this answer
9  
... so what's the complicated way then? – dfasdljkhfaskldjhfasklhf Feb 9 '09 at 15:50
1  
@BPAndrew: Rewriting your own version of WCF? ;) – technophile Feb 9 '09 at 15:55
14  
If WCF is the "simplest method", I really want to cry :P – kizzx2 Aug 30 '10 at 5:57
@kizzx2 We're starting to get into WCF in quite a big way and once you've gone through the initial confusion WCF is really cool. I found this guy's simple implementation really useful devx.com/codemag/Article/39837 – Charlie Aspinall May 15 at 14:16

Named pipes on WCF.

http://msdn.microsoft.com/en-us/library/ms733769.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.