My understanding from the spring documentation is that you should set the message converter to null if you want to receive the TextMessage object.
public interface ResponsiveTextMessageDelegate {
// notice the return type...
String receive(TextMessage message);
}
The above example is from the doucmentation and returns a String. However with no converter specified the response fails. (You do receive a TextMessage)
Is the documentation wrong?



Reply With Quote