Re: [zeromq-dev] odd error from pyzmq

2016-02-26 Thread Jerry Scharf
Osiris, (slap forehead with palm) That explains it... thanks for the quick help. jerry On 02/26/2016 11:59 AM, Osiris Pedroso wrote: Isn't the problem that both sides are binding? I believe one side should bind, the other should connect. On Fri, Feb 26, 2016 at 1:15 PM Jerry Scharf

Re: [zeromq-dev] odd error from pyzmq

2016-02-26 Thread Osiris Pedroso
Cut and paste always gets me too... :-) On Fri, Feb 26, 2016 at 1:59 PM Osiris Pedroso wrote: > Isn't the problem that both sides are binding? > I believe one side should bind, the other should connect. > > On Fri, Feb 26, 2016 at 1:15 PM Jerry Scharf < >

Re: [zeromq-dev] odd error from pyzmq

2016-02-26 Thread Osiris Pedroso
Isn't the problem that both sides are binding? I believe one side should bind, the other should connect. On Fri, Feb 26, 2016 at 1:15 PM Jerry Scharf wrote: > Hi, > > That's not it. I added a gethostbyname to the code, that works but the > bind still fails. I did

Re: [zeromq-dev] odd error from pyzmq

2016-02-26 Thread MinRK
Typically, with bind you want an IP address. Often a domain works, but it requires that zeromq can resolve that domain to a *local* IP address of the machine. This won’t work, for instance, if your raspberry pi is behind a router. You can listen on all IPs by using 'tcp://*:10011'. -MinRK On