Hi,
I am trying to create my first app using spring integration, I am stuck with small issue, I would if anyone can help me in this?
scenario - I have two queues ( 1- request and 2- response), I will be getting message in request queue and then do some transformation and drop the message to response queue
I have configured transformer, for some reason its not getting executing ( might be the way i configured could be wrong)
Here is my configuration
<channel id="incomingMessageChannel" />
<jms:outbound-channel-adapter id="jmsout"
channel="incomingMessageChannel" destination-name="requestqueue">
</jms:outbound-channel-adapter>
<transformer input-channel="incomingMessageChannel"
output-channel="bridgeChannel" ref="trans" method="transform">
</transformer>
<jms:message-driven-channel-adapter
id="jmsin" destination-name="requestqueue"
channel="bridgeChannel" />
<channel id="bridgeChannel" />
<jms:outbound-channel-adapter id="jmsinbound"
channel="bridgeChannel" destination-name="responsequeue" />
Thanks,
Ben


Reply With Quote