Quote Originally Posted by Marten Deinum View Post
You don't need a MessageConverter just remove the lines and the default message converter will do it's job.
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?