Re: qpid-amqp-1-0-client-jms and TLS 1.2

2015-01-30 Thread MattiasÖ
Hi Rob! Thanks for the very quick response! My setup is JDK 7u45. I have bundled Qpid and Apache Camel (camel-core, camel-spring, camel-amqp, acticemq-camel, qpid-amqp-1-0-client-jms) and deploy this on Jboss. This means that I configure everything via a spring xml, so I can't really check enable

Re: encode/decode usage in proton

2015-01-30 Thread Michael Ivanov
Hallo Rafael, *HUGE* thanks! 30.01.2015 19:59, Rafael Schloming пишет: > Hi Michael, > > I just pushed some documentation for pn_data_t into the source tree. You > can build the docs from source if you like. They will most likely apply to > whatever version you are using as that API hasn't chang

Re: usage of message selectors in C++ Qpid 0.28 client (amqp 1.0)

2015-01-30 Thread Jakub Scholz
So, I did some playing around. And it looks like the filter configured this way works fine with Qpid C++ broker, but doesn't really work with ActiveMQ. The filter seems to be present in the attach commands, but seems to be ignored by the broker. 2015-01-30 16:00:50 [Protocol] trace [19d9dcef-2e7c-

Re: encode/decode usage in proton

2015-01-30 Thread Rafael Schloming
Hi Michael, I just pushed some documentation for pn_data_t into the source tree. You can build the docs from source if you like. They will most likely apply to whatever version you are using as that API hasn't changed in a while. You can also just read the header file[1] directly, although it is l

Re: Qpid JMS: Message listener blocks other message listener on different session

2015-01-30 Thread Rob Godfrey
The work around suggested by Keith would work - the issue is that there is a single lock for each connection, and the lock is held for the duration of the time the thread is within onMessage(). Separate connections would use separate locks and thus not face this issue. In terms of a timeline for

Re: Qpid JMS: Message listener blocks other message listener on different session

2015-01-30 Thread Erik Aschenbrenner
Hi Rob, thanks for this information. Is there a plan when the proton based JMS AMQP 1.0 client will be available? Do you think, that the workaround suggested by Keith (using a dedicated connetion for each message listener) would work? Regards, Erik -- View this message in context: http:/

encode/decode usage in proton

2015-01-30 Thread Michael Ivanov
Greetings! I want to port some c++ messaging code from qpid cpp messanger to proton. How one is supposed to perform data serialization/deserialization here? In cpp messenger I used encode/decode functionality and then copied the actual data between map and user object. What should I use in proton?

Re: Qpid JMS: Message listener blocks other message listener on different session

2015-01-30 Thread Rob Godfrey
Hi Erik, due to the nature of this JMS client I don't think it will be possible for us to easily fix the locking issue. The client is built upon an initial non-JMS API I put together for initial proving out of the AMQP 1.0 protocol. I later wrote a wrapper around that non-JMS API to provide JMS f