I am able to connect to the queue directly with the below code in XML But
Activation specification JNDI configured in WAS is still not working.

In WAS Activation Specification I have is

JNDI Name: QueueActivationSpec Destination JNDI Name: TestQueue

Can someone help me to configure with this JNDIs?

 <bean
class="org.springframework.jms.listener.endpoint.JmsMessageEndpointManager">
     <property name="activationSpec">
       <bean class="com.ibm.mq.connector.inbound.ActivationSpecImpl">
           <property name="destinationType" value="javax.jms.Queue"/>
           <property name="destination" value="DestQueueName"/>
           <property name="hostName" value="hostname"/>
           <property name="queueManager" value="QM"/>
           <property name="port" value="port"/>
           <property name="channel" value="CH01"/>
           <property name="transportType" value="CLIENT"/>            
        </bean>
      </property>
      <property name="messageListener" ref="messageListener"/>
      <property name="resourceAdapter" ref="myResourceAdapterBean"/>
</bean>



--
View this message in context: 
http://camel.465427.n5.nabble.com/SpringBoot-application-and-connect-to-Websphere-MQ-Activation-Specification-using-Camel-tp5782826p5783103.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to