Is there any way to use jms as a transport with spring-integration support for web services (ws:inbound-gateway and ws:outbound-gateway)?
I am trying following configuration but it is not working as the publish-subscribe-channel doesn't use the outbound-gateway to send message.
Can someone please share your experience?Code:<ws:outbound-gateway id="wsClientGateway" uri="jms:${jndi.config.topic}?messageType=TEXT_MESSAGE message-factory="messageFactory" marshaller="marshaller" unmarshaller="marshaller" request-channel="requestChannel"/> <int-jms:publish-subscribe-channel id="requestChannel" destination-resolver="destinationResolver" topic-name="${jndi.config.topic}" connection-factory="connectionFactory" acknowledge="auto"/> <bean id="messageFactory" class="org.springframework.ws.soap.saaj.SaajSoapMessageFactory" />
Thanks


Reply With Quote
