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...