spring-integration
spring-integration copied to clipboard
Support a DestinationResolver for replyTo in DefaultJmsHeaderMapper [INT-3838]
Gary Russell opened INT-3838 and commented
Reference URL: http://stackoverflow.com/questions/32816697/header-enricher-to-set-jmsreplyto-field-and-sending-the-same-jms-message-using-j
Artem Bilan commented
It is not possible on the DefaultJmsHeaderMapper since the DestinationResovler requires a jakarta.jms.Session to create a Destination from its name.
However we may mimic a this.jmsTemplate.convertAndSend() via its execute(SessionCallback<T> action) API in the JmsSendingMessageHandler or so.