Re: Async error occurred -> ActiveMQ 5.2 and NMS

2009-10-02 Thread magellings
I captured some stats from the broker before after this happened... http://www.nabble.com/file/p25721340/stats2.txt Before http://www.nabble.com/file/p25721340/stats5.txt After Does anyone see any stat that sticks out as a problem? magellings wrote: > > I found something interesting. > > I

Re: Prefetch=0 not allowed with Spring MDP?

2009-10-02 Thread Drizzt321
xbryan wrote: > > On the ActiveMQ pages, it states that "When using Spring JMS and > MessageDrivenPojo, you cannot use a prefetch of 0, so use 1 instead." > http://activemq.apache.org/what-is-the-prefetch-limit-for.html > > Is this old information? There seems to be a fair bit of old informati

Re: CMS: Installed 3.0.1 but my existing code

2009-10-02 Thread Timothy Bish
On Thu, 2009-10-01 at 18:43 -0700, nmittal wrote: > fails to run. The code has been running on ActiveMQ CPP 2.2.5. I recompiled > the code with 3.0.1 but get the following error... > > No Matching Factory Registered for format := tcp > FILE: activemq/transport/TransportRegistry.cpp, LINE:

Getting notified when client disconnects

2009-10-02 Thread brother
I am using a STOMP based client and would like to know how can I figure out when a client force-disconnects (i.e. not using the STOMP disconnect frame). I am noticing that when using the ActiveMQ admin console that the system catched right away a client force-close as when I refresh the queue or

Unable to start ActiveMQ after blue screen of death

2009-10-02 Thread stirlingc
Hi, Yesterday, a system running ActiveMQ (queues only, no topics or durable subscribers) backed by the Kaha persistence store blue screened and on restart, ActiveMQ failed with the following stacktrace: java.io.EOFException at java.io.RandomAccessFile.readFully(Unknown Source) at

Distributed brokers and faiovers

2009-10-02 Thread farshad
Hi, I am new to ActiveMQ and am trying to use it in a distributed way. I statically define my brokers as: And I connect to host1 and place some messages in a queue. I want to shut down host1 and be able to be a producer and consumer of that same queue connecting to a different broker. Can

Re: Strange behaviour when StoreLimit is reached

2009-10-02 Thread Mitch Granger
Bruce Snyder wrote: On Thu, Oct 1, 2009 at 11:51 AM, Mitch Granger wrote: The 5.3 Snapshot seems to fix all my trouble. Wahoo! What behavior do you see with 5.3 when the StoreLimit is reached? It's more about the StoreLimit recovering when messages are consumed again. 5.3 recovers nicel

Re: Producer flow control not working when there is only one pair

2009-10-02 Thread Dejan Bosanac
Great that you solved it. Cheers -- Dejan Bosanac - http://twitter.com/dejanb Open Source Integration - http://fusesource.com/ ActiveMQ in Action - http://www.manning.com/snyder/ Blog - http://www.nighttale.net On Fri, Oct 2, 2009 at 10:19 AM, Dan Tran wrote: > > > I am finally have flow cont

Re: Producer flow control not working when there is only one pair

2009-10-02 Thread Dan Tran
I am finally have flow control working, the main problem was that I did not setup my topic consumer prefetch size. and since the default prefetch size for topic is 1000 multiply 1M per message, all messages goes to consumer dispatch queue and blow up there. The broker never had no chance to do a

Re: Setting up Message level encryption

2009-10-02 Thread James Casey
Hi Priya, ActiveMQ doesn't directly support message-level encryption.I consider this to be in the application domain. For example, we currently do message levelencryption/decrpytion of the body of messages for some of our applications using openssl call directly in the clients (python). You s