[zeromq-dev] Higher level zeromq orchestration

2014-10-08 Thread Al MailingList
Hi all, Apologies if this question is irrelevant or ill conceived ... I've previously used zeromq and thoroughly enjoyed the experience. I am considering using it again for a slightly larger project (which is very much still a thought bubble) and am taking some time to consider options. I have a

Re: [zeromq-dev] Python to C++ PUB-SUB Socket

2014-10-08 Thread KIU Shueng Chuan
You didn't seem to have set any subscriptions on your SUB sockets. I also seem to recall that binding to localhost doesn't work. Bind to 127.0.0.1 instead. Connecting to localhost does work though. ___ zeromq-dev mailing list zeromq-dev@lists.zeromq.org

[zeromq-dev] ZMQError: Resource temporarily unavailable

2014-10-08 Thread Karthik Sharma
I have an zmq function as below def recieve_messages(self): string = self.sub_socket.recv(flags=zmq.NOBLOCK) print('flow mod messages recieved {}'.format(string)) When I run the program however I get the following error. string = self.sub_socket.recv(flags=zm

[zeromq-dev] Python to C++ PUB-SUB Socket

2014-10-08 Thread Nathan Hui
Hi all, I'm working on providing sensor information from a Python script to a C++ program that processes that information. Right now, I am having trouble getting the Python socket to talk to the C++ socket. I first tried setting up the Python socket as a PUB socket, and the C++ side as a SUB