Well, I discovered why... and it has more to with the connection string than anything else.
I was connecting using a connection string like "tcp://localhost:5556" In jeromq that binds to IPv4, in NetMQ it binds to IPv6. Our server is binding to IPv4, and thus there is no connection. I changed the connection string to "tcp://127.0.0.1:5556" and it all started working. This is all hack/test code so we can sort out how to set up the server connection properly in the future. Cheers, Dan From: [email protected] [mailto:[email protected]] On Behalf Of Diego Duclos Sent: Wednesday, 4 December 2013 9:56 PM To: ZeroMQ development list Subject: Re: [zeromq-dev] Difference between NetMQ and jeromq Can you try calling AddTimer(new NetMQTimer(100)); on the Poller before starting it ? On Wed, Dec 4, 2013 at 9:22 AM, Daniel Cleyne <[email protected]<mailto:[email protected]>> wrote:
_______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
