I am trying to communicate over IPC using a JZMQ subscriber and PyZMQ publisher but messages are received in the JZMQ side.
I have checked my publisher using a Python subscriber and did it work.
Any ideas? Is that perhaps not supported?
The JZMQ code:
ZContext context = new ZContext();
Socket subscriber = context.createSocket(SocketType.SUB);
subscriber.connect("ipc://001);
subscriber.subscribe("".getBytes());
byte[] data = subscriber.recv();
Hi,
I am trying to communicate over IPC using a JZMQ subscriber and PyZMQ publisher but messages are received in the JZMQ side. I have checked my publisher using a Python subscriber and did it work.
Any ideas? Is that perhaps not supported?
The JZMQ code:
The PyZMQ code: