Re: [zeromq-dev] Delphi Setup

2015-11-28 Thread Balázs Varga
Hi Bob, I admit that I abandoned the https://github.com/bvarga/delphizmq repo a little bit, maybe you should try the develop branch which was working at that time with zmq v4. Anyway what's the error you get, which delphi version do you use? regards Balazs On Sat, Nov 28, 2015 at 5:47 PM Bob S

Re: [zeromq-dev] Zyre + LabView (on RTOS)

2015-06-22 Thread Balázs Varga
Haven't used, but there's something out there, check it out here: http://labview-zmq.sourceforge.net/ Balazs On Mon, Jun 22, 2015 at 6:40 PM Pieter Hintjens wrote: > I've not done this but afaik you can call C libraries from LabView, so > you can call Zyre (libzyre). > > On Mon, Jun 22, 2015 at

[zeromq-dev] msvc12 project with libsodium

2014-01-03 Thread Balázs Varga
Hello all, Since there's no libzmq with libsodium in the windows installer (v4.0.1). I tried to build my own, I added a msvc12 solution, and updated the project files, here it is: https://github.com/bvarga/libzmq I could successfully built libzmq and libsodium with Microsoft Visual Studio Expres

Re: [zeromq-dev] Using the full bandwidth of a 10 GBps link on Windows 7

2013-07-03 Thread Balázs Varga
Hi, I believe There was a thread last month about something similar, see: http://lists.zeromq.org/pipermail/zeromq-dev/2013-June/021971.html Balazs On Wed, Jul 3, 2013 at 10:20 AM, Andy Gotz wrote: > Hi Edwin, > > I agree the problem is not ZMQ but it would be nice to achieve this with > ZMQ.

Re: [zeromq-dev] Not a valid DLL error

2013-04-05 Thread Balázs Varga
Hello, I would use Dependency walker to check the executable, and the dll. http://www.dependencywalker.com/ balazs On Fri, Apr 5, 2013 at 8:29 PM, Nishant Mittal wrote: > Joshua > on this machine the PATH environment variable has c:\windows\system32 in > it.. so i copied libzmq.dll there but t

[zeromq-dev] Setting RcvTimeout or polling with a timeout value?

2013-02-01 Thread Balázs Varga
Hello, If somebody want to set a timeout when receiving from a socket, there are two approaches: 1. setting ZMQ_RCVTIMEO socket options and call zmq_recv() which will set error EAGAIN, if there's nothing in the queue and 2. polling the socket with a given timeout? zmq_pollitem_t items [] = {

Re: [zeromq-dev] Lazy Pirate problems.

2012-12-25 Thread Balázs Varga
y default zmq_term will block forever in several > cases unless you set LINGER to some low interval on all sockets before > closing them. > > -Pieter > > On Mon, Dec 24, 2012 at 1:15 AM, Balázs Varga wrote: > > Hi, > > > > While I was having a closer look at Lazy P

[zeromq-dev] Lazy Pirate problems.

2012-12-23 Thread Balázs Varga
Hi, While I was having a closer look at Lazy Pirate, I may found a bug in the zmqlib. When the lpserver simulates a server crash, than the lpclient tries to reconnect three times. But because the socket just sent a message, closes the socket, and creates a new one... After the third attempt gives

Re: [zeromq-dev] zmq_socket_monitor wrong disconnect address

2012-11-15 Thread Balázs Varga
romq/libzmq/pull/471 > >> > > >> > > >> > On Wed, Nov 14, 2012 at 12:50 AM, Pieter Hintjens > wrote: > >> >> > >> >> Hi Balazs, > >> >> > >> >> This is a known issue I think. The code refers to stri

[zeromq-dev] zmq_socket_monitor wrong disconnect address

2012-11-13 Thread Balázs Varga
Hello, zmq_socket_monitor(3) disconnect event sometimes gives back a wrong address. I tried to create a test case, which seems to reproduce this issue, you can find it here: https://gist.github.com/4068920# regards balazs ___ zeromq-dev mailing list z

Re: [zeromq-dev] CTRL+C

2012-10-29 Thread Balázs Varga
On Oct 30, 2012 6:09 AM, "Pieter Hintjens" wrote: > > On Mon, Oct 29, 2012 at 9:06 PM, Balázs Varga wrote: > > > How is it solved in other bindings? I think it can be a windows issue, but > > not sure, haven't tried it on other OS yet. > I just tried pyzm

[zeromq-dev] CTRL+C

2012-10-29 Thread Balázs Varga
Hi, I have difficulties implementing a proper CTRL+C handling in my delphi binding. In the guide I read that : 'If your code is blocking in zmq_msg_recv(3) , zmq_poll(3) , or zmq_msg_send(3)

Re: [zeromq-dev] Java ZMQ.REP Service Example is in Error

2012-09-10 Thread Balázs Varga
Hello Will, On Mon, Sep 10, 2012 at 6:42 AM, Will Heger wrote: > In the ZMQ service example (http://zguide.zeromq.org/java:rrserver), it shows: > > responder.connect("tcp://localhost:5560"); > > I am new to ZMQ, but after 3 days of banging my head against the wall, > I believe the line should rea

[zeromq-dev] Delphi binding.

2012-07-05 Thread Balázs Varga
Dear members, I just want to let you know, that I've started working on a 0MQ binding for Delphi, and pushed the initial version of the code, which is here: https://github.com/bvarga/delphizmq . For now it's not well tested, however 20 examples translated from the guide are working great for me.

[zeromq-dev] Router-Delaer or Pub-Sub

2012-05-09 Thread Balázs Varga
Hi, I would like to ask for advice which kind of sockets to choose for my problem. I would like to do some kind of address based routing, what I can do mainly with a router - dealer, or pub sub way. I have one (web) server (with many connected clients), and workers. I want to deliver messages to s