Hi,
I saw a thread in the archives about JMS Gateway. I have similarly set up a jms-gateway within my configuration. I'm trying to read off an ActiveMQ queue and pass the message onto an SI message channel. However, I find that all the code comes alive, but the message just isn't picked off the queue. lil' help?
I'm using the M4 release of Spring Integration.
snippets of config:
Code:<bean id="inboundJMSFactory" class="org.apache.activemq.pool.PooledConnectionFactory" destroy-method="stop"> <property name="connectionFactory"> <bean class="org.apache.activemq.ActiveMQConnectionFactory"> <property name="brokerURL"> <value>tcp://localhost:61616</value> </property> </bean> </property> </bean> <si:jms-gateway id="jmsSynchronousInbound" connection-factory="inboundJMSFactory" destination-name="Inbound.JMS" request-channel="mcInboundSynchronousRequestChannel" reply-channel="mcInboundSynchronousResponseChannel" expect-reply="true"/>


Reply With Quote