.Net interop between EXEs

G

Guest

I'm interested in some opinions on the possible ways to have 2 C# exes
communicate with each other. One is an app that is always running, almost
like a device driver or service, to collect and process data from external
hardware (I guess in WM2005 it would be a real service). The other is an app
that comes and goes and wants to periodically get data from that app, as well
as receive events (disconnected, device changed state, etc). I don't believe
there's any way I can create callable methods in the .exe assembly, the way I
could if it were a .dll assembly (please correct me if I'm wrong!). And I
don't want to have the driver app consist of a small exe and a workhorse dll
that both exes can call into if I can avoid it. So I'm wondering if there
are other recommended .Net ways to do this, or if I should just go with old
client/server standbys like sockets, named pipes, etc. Thanks!
 

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

Top