Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What to use to make two .net programs transfer information [duplicate]

Tags:

c#

.net

vb.net

I currently have two programs that need to comunicate one with another. It doesn't have to be something complicated, it's just passing data from one to another, all very simple. I was thinking of using .net remoting, but I've heard there's a new thing WCF. Should I go for the .net remoting or try WCF? Or is there something simpler to use?

edit: Both applications are simple, I don't want to have anything to do with IIS, services and such.

Thanks

like image 505
devoured elysium Avatar asked Dec 18 '22 06:12

devoured elysium


2 Answers

use WCF with named pipes binding, here you can find useful examples

like image 91
Arsen Mkrtchyan Avatar answered Dec 21 '22 22:12

Arsen Mkrtchyan


The magic phrase is "inter-process communication". Then you'll be able to find answers like this.

like image 25
DSO Avatar answered Dec 22 '22 00:12

DSO