I'm trying to perform asynchronous message exchanges, but I'm getting the following error:
Anyone know how to correctly receive and convert the message?java.lang.RuntimeException: org.apache.cxf.interceptor.Fault: failed to convert to serialized Message content
I've setup a MessageListenerAdapter to delegate the 'onMessage' event.
Below are the message sender and receiver.
Sender:
Receiver:Code:rabbitTemplate.convertAndSend(msgQueue.getName(), new HashMap<String, String>(2) { { ... } });
Code:public void notify(Map msg) { ... }


Reply With Quote
