There's any number of answers to this, but when I have to do IPC between
different languages I send JSON messages over ZeroMQ sockets.
http://www.zeromq.org/
Pretty simple to use, implementations exist in almost all currently popular
languages.
On Friday, February 8, 2013 8:44:06 AM UTC+11, Jv
For json, Clojure has a convenient lib:
https://github.com/clojure/data.json
for networking, how about using HTTP as the transport? Clojure has
many libraries for HTTP server & client, c# has many libraries too.
On Friday, February 8, 2013 5:44:06 AM UTC+8, JvJ wrote:
>
> I'm looking to d
I'd use sockets (or even pipes, if you really don't need any flexibility in
the setup),
it doesn't get much simpler than that.
They just work.
cheers
2013/2/7 JvJ
> I'm looking to do some simple messaging (json strings) between programs
> running on the same machine. One will be in C# and one
I'm looking to do some simple messaging (json strings) between programs
running on the same machine. One will be in C# and one will be in Clojure.
Is there a library/set of libraries that could simplify this
communication? I haven't done much networking in the past, and I'd like to
keep this