Tutorial by Examples

Zeromq has a huge number of bindings for different languages. To find the right binding and instructions how to use follow this. Also you can use: a pure C# implementation or Java implementation
In this example we will make a simple client and server with REQ-REP (request-reply) sockets. The client sends "Hello" to the server, which replies with "World". Server opens a ZeroMQ REP-socket on port 5555, reads requests on it, and replies with "World" to each reque...

Page 1 of 1