ImportError: No module named qpid.disp while invoking qpid-tool

2015-12-17 Thread Kaushal Shriyan
Hi, I am getting the below issue while invoking qpid-tool on Red Hat Enterprise Linux Server release 6.6 (Santiago) OS. Apache qpid version is 0.14 and python version is 2.6.6. ./qpid-tool Traceback (most recent call last): File "./qpid-tool", line 31, in from qpid.disp import Display Im

Re: ImportError: No module named qpid.disp while invoking qpid-tool

2015-12-17 Thread Kaushal Shriyan
On Thu, Dec 17, 2015 at 2:18 PM, Kaushal Shriyan wrote: > Hi, > > I am getting the below issue while invoking qpid-tool on Red Hat > Enterprise Linux Server release 6.6 (Santiago) OS. Apache qpid version is > 0.14 and python version is 2.6.6. > > ./qpid-tool > Traceback (most recent call last): >

Re: [VOTE] Release Qpid Proton 0.11.1

2015-12-17 Thread aconway
On Tue, 2015-12-15 at 19:32 +, Robbie Gemmell wrote: > Hi all, > > I have put up an RC for 0.11.1, please test it and vote accordingly. +1 > > The release archive and sig/checksums can be grabbed from: > https://dist.apache.org/repos/dist/dev/qpid/proton/0.11.1-rc1/ > > Maven artifacts for

What Qpid AMQP 1.0 client to use?

2015-12-17 Thread Mark Soderquist
Over the months I have found at least four Qpid client libraries that could be used to implement a Java AMQP 1.0 client. My challenge is knowing what I should use. I'm not sure what clients will be supported and some of them I have yet to get to work. I will list the libraries by their Maven art

Re: What Qpid AMQP 1.0 client to use?

2015-12-17 Thread Rob Godfrey
(Copying and pasting my reply from the JIRA here) Hi Mark, As you note, the future direction within Qpid is the qpid-jms-client which itself is built on top of the proton-j libraries. (Proton itself has multiple sub-components / APIs which are IMHO a little confusing in their multitude, and their

Qpid JMS client able to send but not receive

2015-12-17 Thread Mark Soderquist
I have implemented a simple client with the qpid-jms-client 0.6.0 client against Qpid 6.0.0 Java Broker. I have successfully been able to send messages but I am unable to consume messages. Everything works without error and I know that I am connecting because I see the consumer create events on

Re: Qpid JMS client able to send but not receive

2015-12-17 Thread Timothy Bish
You need to call connection.start() in order to begin processing of incoming messages when dealing with JMS connections. On 12/17/2015 06:43 PM, Mark Soderquist wrote: > I have implemented a simple client with the qpid-jms-client 0.6.0 client > against Qpid 6.0.0 Java Broker. I have successfully

Re: Qpid JMS client able to send but not receive

2015-12-17 Thread Mark Soderquist
That was it. Simple error. -- View this message in context: http://qpid.2158936.n2.nabble.com/Qpid-JMS-client-able-to-send-but-not-receive-tp7635452p7635454.html Sent from the Apache Qpid users mailing list archive at Nabble.com.

Re: What Qpid AMQP 1.0 client to use?

2015-12-17 Thread Erik Aschenbrenner
Hi, I think the most common choice would be the new Qpid JMS Client based on Proton. I'm using it in an financial message application based on AMQP 1.0 and its working without any problems over half an year now in production. Prior the new Qpid JMS Clie