Re: Stomp causing error 500 when connecting

2011-07-25 Thread dead_devil_66
Yes, that was the problem. Thanks for pointing it out. :) -- View this message in context: http://activemq.2283324.n4.nabble.com/Stomp-causing-error-500-when-connecting-tp3691651p3694690.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: Point-to-Point Model - Multiple Consumers - ActiveMQ - 5.3.2

2011-07-25 Thread yousafsajjad
Broker push messages to the consumer in a roundrobin fashion. So I believe if you run your program a little longer you would be able to see the pattern. You can avoid it by setting prefetch limit = 1. This is enable consumers to poll for messages from the queue. Also it would better if you use poo

Re: Can round robin dispatching wait for consumer acks?

2011-07-25 Thread yousafsajjad
where you able to fix this problem. I want consumers to poll for messages from the queue instead of broker pushing message(s) to the consumer. I tried prefetch = 0, I got an error saying you cannot set prefetch limit to 1 for asynchronous consumers since I am using Spring. Do you know how to fix

Re: Long time persistence service

2011-07-25 Thread Marcelo Jabali
That seems to be caused by a flow control condition. Take a look on this: http://activemq.apache.org/producer-flow-control.html Hope this helps, -Marcelo On Jul 25, 2011, at 11:37 AM, pol_ice wrote: > Hi there, > > Let me first describe the way I am planning to use activemq for my service. >

Re: how to setMaxConcurrentConsumers in cpp client.

2011-07-25 Thread Timothy Bish
On Mon, 2011-07-25 at 04:45 -0700, mahens wrote: > using CMS i am connecting to activemq broker. i want to use > setMaxConcurrentConsumers() > of org.springframework.jms.listener.DefaultMessageListenerContainer. > > Is there any similar functionality in cms so that i can use this in cpp > progra

Long time persistence service

2011-07-25 Thread pol_ice
Hi there, Let me first describe the way I am planning to use activemq for my service. The service provides API for its clients and guarantees to notify anybody interested in the changes happened to its data. For example if new user is created, every API user should be able to be notified about it

RE: How can I build Activemq-5.3.x ?

2011-07-25 Thread Allen Reese
I build it from SVN without problems, you might try that instead of messing with the src.zip if the zip isn't working for you. svn co http://svn.apache.org/repos/asf/activemq/tags/activemq-parent-5.3.2 cd activemq-parent-5.3.2 mvn -Dtest=false -DfailIfNoTests=false clean site Core Platforms Yah

Re: Stomp causing error 500 when connecting

2011-07-25 Thread Dejan Bosanac
Are you sure there's a stomp transport listening on 61616, e.g. http://twitter.com/dejanb - The experts in open source integration and messaging - http://fusesource.com ActiveMQ in Action - http://www.manning.com/snyder/ Blog - http://www.nighttale.net On Mon, Jul 25, 2011 at 6:3

Re: get timestamp of all messages in a queue

2011-07-25 Thread Dejan Bosanac
It should be fixed now on the trunk https://issues.apache.org/jira/browse/AMQ-3415 Regards -- Dejan Bosanac - http://twitter.com/dejanb - The experts in open source integration and messaging - http://fusesource.com ActiveMQ in Actio

Re: How can I build Activemq-5.3.x ?

2011-07-25 Thread Norman Maurer
I guess you also should be able to change the version of the plugin in the pom.xml to something which can be found in the maven repos. Bye, Norman Am 25.07.2011 14:17, schrieb Dejan Bosanac: Here you can find some JavaDocs for 5.3.0 release http://activemq.apache.org/maven/5.3.0/activemq-cor

Re: How can I build Activemq-5.3.x ?

2011-07-25 Thread Dejan Bosanac
Here you can find some JavaDocs for 5.3.0 release http://activemq.apache.org/maven/5.3.0/activemq-core/apidocs/index.html Not sure if it helps though Regards -- Dejan Bosanac - http://twitter.com/dejanb - T

Re: Authorization problems with Advisory Topics

2011-07-25 Thread Dejan Bosanac
Take a look at conf/activemq-security.xml example An entry like should be enough Regards -- Dejan Bosanac - http://twitter.com/dejanb - The experts in open source integration and messaging - http://fusesource.com ActiveMQ in Action - http://www.manning.com/snyder/ Blog - http:

how to setMaxConcurrentConsumers in cpp client.

2011-07-25 Thread mahens
using CMS i am connecting to activemq broker. i want to use setMaxConcurrentConsumers() of org.springframework.jms.listener.DefaultMessageListenerContainer. Is there any similar functionality in cms so that i can use this in cpp program? Please suggest. -- View this message in context: http:

Re: MessageServlet and Memory-/CPU-Consumption

2011-07-25 Thread Torsten Mielke
Regarding your questions: 1) Yes, without a pooled connection factory it is possible that you create a new JMS connection, session, producer/consumer for every new message. Creating these JMS resources is very expensive in terms of performance and CPU usage. There are some additional details gi

Re: Redelivery Policy Setting

2011-07-25 Thread MZ
Dear all, is there bugs in redelivery mechanism in terms of initialRedeliveryDelay and maximumRedeliveries? According to my tests: 1. The initialRedeliveryDelay takes effect after 2. Redelivery(rollback) of a message. 2. A message will be redeliveried one more time than the setting. Greetings,