Re: Queue messages not dequeuing

2012-07-23 Thread fziska
sage is not being dequeued, do you mean from >> the >> >> queue on the broker? >> >> >> >> The overall scheme itself seems to be pretty complicated; where are >> the >> >> topic messages coming from? >> >> >> >> If you

Re: Queue messages not dequeuing

2012-02-24 Thread Matt Lachman
complicated; where are the > >> topic messages coming from? > >> > >> If you are trying to ensure that messages for a particular id are > >> consumed > >> in sequence then perhaps message groups > >> (http://activemq.apache.org/message-groups.html) might fit the bill > >> better > >> and simplify your code. > >> > >> Jakub > >> > >> > > > > > -- > View this message in context: > http://activemq.2283324.n4.nabble.com/Queue-messages-not-dequeuing-tp4410892p4416812.html > Sent from the ActiveMQ - User mailing list archive at Nabble.com. >

Re: Queue messages not dequeuing

2012-02-24 Thread Jakub Korab
trying to ensure that messages for a particular id are >> consumed >> in sequence then perhaps message groups >> (http://activemq.apache.org/message-groups.html) might fit the bill >> better >> and simplify your code. >> >> Jakub >> >> > -- View this message in context: http://activemq.2283324.n4.nabble.com/Queue-messages-not-dequeuing-tp4410892p4416812.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: Queue messages not dequeuing

2012-02-23 Thread Matt Lachman
Hi Jakub, Yes, from the queue on the broker. As far as the broker is concerned, it remains "in-flight" permanently. What's weirder is when I run a standalone java client to consume the messages, it has no trouble whatsoever. So I think there's something going on in the client side that's causing m

Re: Queue messages not dequeuing

2012-02-23 Thread Jakub Korab
.6 snapshot > (was running into this problem on 5.5: > https://issues.apache.org/jira/browse/AMQ-3465). It's all local on my Win > 7 > x64 machine. I'm using Session.AUTO_ACKNOWLEDGE and non-persistent > messaging. > > Any ideas? Has anyone else run into this? >

Queue messages not dequeuing

2012-02-22 Thread Matt Lachman
Hi, I'm currently having a problem with messages sent to a queue that aren't being dequeued. It appears that my listener is receiving the messages but they are stuck "in flight" on the server and are never being dequeued. My problem domain: I've set up a semaphore of sorts where I have one liste