Hi all,
we use a message-driven-channel-adapter for consuming messages from a JMS provider, in our case is WebLogic.
We need to consume messages in the order they arrive on WebLogic so we thought to 'limit' the number of JMS consumers to 1, how could we achieve that with message-driven-channel-adapter ? Should we use any additional property ?
<code>
<jms:message-driven-channel-adapter id="jmsMessageChannelAdapter"
connection-factory="connectionFactory"
destination="queue"
channel="jmsListenerChannel"
error-channel="errorChannel"/>
</code>
Or the above approach, we mean limit the number of JMS consumers, is not the best one ?
Thanks in advance for any hint.
Greetings
nuvola


Reply With Quote