Programmatically purge() a queue

2009-08-11 Thread centis
I am trying to find an example of purging a Queue from Java. Can someone point me to someting besides, "Using JMX..." :) I just need a way to clear out the existing queues before my regression tests run. Thanks! CB -- View this message in context: http://www.nabble.com/Programmatically-purge

Re: Programmatically purge() a queue

2009-08-12 Thread centis
n example that doesn't use an embedded broker. CB bsnyder wrote: > > On Tue, Aug 11, 2009 at 1:40 PM, centis wrote: >> >> I am trying to find an example of purging a Queue from Java.  Can someone >> point me to someting besides, "Using JMX..." :)  I j

Selectively acknowledging messages.

2009-02-23 Thread centis
Hi, We have a database notification hook that gives us access to all database operations. We use this hook to send notifications of updates to several different services. The operations include a transaction id and I collect them in memory until the transaction is committed. The problem is I o

Re: Selectively acknowledging messages.

2009-02-24 Thread centis
rowse/AMQ-1732 > > I'll add see to document it better soon, though. > > Cheers > -- > Dejan Bosanac > > Open Source Integration - http://fusesource.com/ > ActiveMQ in Action - http://www.manning.com/snyder/ > Blog - http://www.nighttale.net > > > On T

Re: get Broker from ActiveMQConnectionFactory?

2009-02-25 Thread centis
I'm looking for a way to do this too... I would like to be able to purge a queue, but can't figure out how to get the BrokerService instance for the currently running broker. Anyone? Thanks! CB silver1 wrote: > > Hi, > > I have a standalone ActiveMQ-Broker (started with activemq.bat). > In

Client side queue...

2009-03-10 Thread centis
What happens when asyncSend is enabled and the broker has gone down or is unreachable. A collegue said that he read somewhere there is a "client side queue", some kind of local store that will cause the messages to be resent later when the broker recovers. Is there any such facility? The basic