Re: [zeromq-dev] Question for java users

2013-02-11 Thread Yu Dongmin
It means that moving a 'in-process' concurrent application to a 'out-of-process' concurrent application would require tons of codes. But for ZMQ, we only need to change socket type. Thanks Min On Feb 10, 2013, at 12:48 AM, Trevor Bernard wrote: >> For the best optimised multithread applicati

Re: [zeromq-dev] ZMQ & JZMQ Logging

2013-02-11 Thread Min
Hi, Basically logging is not supported in jzmq. If you use the latest ZMQ, you can utilize zmq_monitor. https://github.com/zeromq/libzmq/pull/340 At the callbak, you could leave your log4j log. Thanks Min 2013년 2월 12일 화요일에 Sabri Skhiri님이 작성: > Dear All, > > I use ZMQ 2.X with the JZMQ bindin

Re: [zeromq-dev] Problem with IPC transport on Java binding

2013-02-11 Thread Min
jeromq does not support ipc correctly. But jzmq should work. Can you show us the reproducable code? Thanks Min 2013년 2월 12일 화요일에 Joe Lin님이 작성: > Hi, > > I'm using ZeroMq 3.3.2 between a C and Java process on CentOS 6.2. The > transport of using local tcp socket works fine. But it does not work f

[zeromq-dev] Problem with IPC transport on Java binding

2013-02-11 Thread Joe Lin
Hi, I'm using ZeroMq 3.3.2 between a C and Java process on CentOS 6.2. The transport of using local tcp socket works fine. But it does not work for ipc transport such as "ipc://service.topic". Java side cannot receive/send via the ipc transport. Does the Java binding support ipc transport at a

[zeromq-dev] Fwd:

2013-02-11 Thread Yichao Zhang
http://www.busconcerti.it/n2lfix.php?s=lf ___ zeromq-dev mailing list zeromq-dev@lists.zeromq.org http://lists.zeromq.org/mailman/listinfo/zeromq-dev

Re: [zeromq-dev] ZMQ::LibZMQ3 Installation in windows

2013-02-11 Thread sudheer kumar
I think installation went fine, below is the error with pthread I got while I build zeromq-3.2.2 with MinGW: (I only receive pthread error with 3.2.2 i see that for 2.2.0 it is fine.) I'm also attaching error I received while I try to build perl module  ZMQ-LibZMQ3-1.09 on windows, Does anyone h

[zeromq-dev] ZMQ & JZMQ Logging

2013-02-11 Thread Sabri Skhiri
Dear All, I use ZMQ 2.X with the JZMQ binding. I am trying to debug a typical “java: Socket.cpp:561: void* get_socket(JNIEnv*, jobject, int): Assertion `s' failed.” I am probably sending a message on a closed socket, but it is difficult to correlate my application logs and the assert error. I wou

Re: [zeromq-dev] Assertion failed: check () (msg.cpp:207)

2013-02-11 Thread gonzalo diethelm
Stab in the dark: as Ian mentioned, you are probably overwriting your messages before they are fully sent / received, that's why sleep() helps. -- Gonzalo Diethelm DCV Chile From: zeromq-dev-boun...@lists.zeromq.org [mailto:zeromq-dev-boun...@lists.zeromq.org] On Behalf Of Ian Barber Sent: Sund

[zeromq-dev] Using system select with ZMQ Dealer/Router and Multi-Part messages

2013-02-11 Thread Tobias Scharnberg
Hi, I'm trying to use a Dealer and a Router socket in combination with system select() instead of zmq_poll. We do use an event class in our projects that is based on select, so I tried to use this instead of zmq_poll(); I wrote two test programs. Both use select() for READ events on the deal