I am using spring 2.5.6 and spring-integration 1.0.3 and MQ client 6.0.2.2

I have had to add a message selector to my message-driven-channel-adapter, but now I am getting the following error:

MQJMS2008: failed to open MQ queue ; nested exception is com.ibm.mq.MQException: MQJE001: Completion Code 2, Reason 2085

It works when I used ActiveMQ as a test harness.

My configuration:

<jms:message-driven-channel-adapter 
    id="jmsIn" 
    channel="inboundMessage" 
    container="myContainer"/>

<bean id="myContainer" 
    class="org.springframework.jms.listener.DefaultMessageListenerContainer">
    <property name="connectionFactory" ref="connectionFactory"/>
    <property name="destinationName" value="myQueue"/>
    <property name="messageSelector" ref="messageSelector"/>
    <property name="transactionManager" ref="txManager"/>
</bean>

If I revert to my previous configuration it's all good (except I don't have a message selector!)

<jms:message-driven-channel-adapter 
    id="jmsIn" 
    destination="tradeQueue" 
    channel="inboundMessage" 
    transaction-manager="txManager"/>

Help urgently required and very much appreciated.

Paul

link|improve this question

Does the queue actually exist to start with? ActiveMQ creates queues on demand, IBM MQ does not. – skaffman Nov 17 '09 at 12:32
hi Skaffman, queue does exist. If I use the following config, it works (without the message selector). <jms:message-driven-channel-adapter id="jmsIn" destination="tradeQueue" channel="inboundMessage" transaction-manager="txManager"/> – Paul McKenzie Nov 17 '09 at 13:22
by "works" do you mean you can send and receive messages? – skaffman Nov 17 '09 at 13:38
yes, that's correct – Paul McKenzie Nov 17 '09 at 13:46
feedback

1 Answer

up vote 1 down vote accepted

Ah!

Where I had

<property name="destinationName" value="myQueue"/>

I should have had

<property name="destinationName" ref="myQueue"/>

Skaffman was right, the queue didn't actually exist.

P

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.