I am able to get it working with below code using Queue/Topic connection factory.
<bean id="jms" class="org.apache.camel.component.jms.JmsComponent"> <property name="connectionFactory"> <bean id="mqConnectionFactory" class="org.springframework.jndi.JndiObjectFactoryBean"> <property name="jndiName" value="tcfjndi"/> <property name="lookupOnStartup" value="false"/> <property name="cache" value="true" /> <property name="proxyInterface" value="javax.jms.TopicConnectionFactory" /> </bean> </property> </bean> But I need it to be working with Activation specification(JNDI). Can you please help on this? -- View this message in context: http://camel.465427.n5.nabble.com/SpringBoot-application-and-connect-to-Websphere-MQ-Activation-Specification-using-Camel-tp5782826p5782948.html Sent from the Camel - Users mailing list archive at Nabble.com.