Bohdan Dzoba
Bohdan Dzoba
@sbrannen I haven't tried with different versions. Is there something wrong with my configuration? 5.1.2. doesn't work too.
Seems like the problem is with `MessagingMessageListenerAdapter` which doesn't call messageConverter before sending reply. Workaround is to override `handleResult()` in `MessagingMessageListenerAdapter` like this ```java public static class CustomMessagingMessageListenerAdapter extends MessagingMessageListenerAdapter...
@rstoyanchev > Can you try a breakpoint to see if it has the right converter The converter is null, but this is a org.springframework.jms.support.converter.MessageConverter. And I configured a org.springframework.messaging.converter.MessageConverter, because...
> Why don't you configure the messageConverter on the JmsListenerContainerFactory as indicated in the documentation? @snicoll Because I use `org.springframework.messaging.converter.MappingJackson2MessageConverter` for conversion and it doesn't implement `org.springframework.jms.support.converter.MessageConverter`. This configuration works...
> I haven't been able to find anything open source that does this job well, but if such a library exists this would probably be preferable to rolling one. @tomakehurst...