I have an app where I’m using spring 2.0 and activeMQ4.1.0. In this app I
need to process many message and send files to another queue, all this
simultaneously, so I have configured a DefaultMessageListenerContainer in
this way:

 
        <bean id="updateContainer" 
          
class="org.springframework.jms.listener.DefaultMessageListenerContainer">
                <property name="concurrentConsumers" value="50" />
                <property name="connectionFactory" ref="jmsFactory" />
                <property name="destination" ref="requestUpdateQueue" />
                <property name="messageListener" ref="requestUpdateListener" />
        </bean>



Buy the problem is that when the clients increase more than 2, the
transferring is stopped.

Could be this a bug?

Regards…

-- 
View this message in context: 
http://www.nabble.com/I-can%E2%80%99t-receive-more-than-2-messages-simultaneously-with-DefaultMessageListenerContainer-tf3241539s2354.html#a9011209
Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Reply via email to