Re: Selective message acknowledgment in Java client (and C++ broker)?

2012-04-17 Thread Rajith Attapattu
I'm currently on vacation and has very limited access to email. Thanks Robbie for picking this up. Rajith On Sat, Apr 14, 2012 at 11:44 AM, Robbie Gemmell robbie.gemm...@gmail.comwrote: You probably want to try the 0.16 RCs or trunk if you are interested in using the client-side selector

Re: Selective message acknowledgment in Java client (and C++ broker)?

2012-04-14 Thread Fraser Adams
Hi Pavel/Jakub/Rajith I posted ages back (March 2011) that I didn't believe that JMS Message Selectors were behaving correctly: http://qpid.2158936.n2.nabble.com/JMS-Message-Selectors-Behaving-Strangely-td6158445.html My observations concur with the observations of Pavel and Jakob namely I'd

Re: Selective message acknowledgment in Java client (and C++ broker)?

2012-04-14 Thread Robbie Gemmell
You probably want to try the 0.16 RCs or trunk if you are interested in using the client-side selector support (available when connecting to AMQP 0-10 brokers) of the Java client, as several related changes were made to that area since Qpid 0.14 (in order to improve efficiency/correctness when

Re: Selective message acknowledgment in Java client (and C++ broker)?

2012-04-13 Thread Jakub Scholz
Hi Rajith, I was playing with the JMS selectors last week. While they do work and really select the messages based on the filter, it seemed to me that it switched off the acknowledgments completely. The Java application was getting only the selected messages, but I was unable to acknowledge them

Selective message acknowledgment in Java client (and C++ broker)?

2012-04-12 Thread Pavel Moravec
Hello, having Java client and C++ broker, I want to implement selective consumption of messages from a queue (something like JMS message selectors in Java broker). I.e.: 1) Having CLIENT_ACKNOWLEDGE mode, 2) In a loop through all messages of the queue: a) receive a message b) decide if to

Re: Selective message acknowledgment in Java client (and C++ broker)?

2012-04-12 Thread Rajith Attapattu
On Thu, Apr 12, 2012 at 9:53 AM, Pavel Moravec pmora...@redhat.com wrote: Hello, having Java client and C++ broker, I want to implement selective consumption of messages from a queue (something like JMS message selectors in Java broker). I.e.: 1) Having CLIENT_ACKNOWLEDGE mode, 2) In a