At the moment, the message of the StompErrorFrameReceived exception only contains the message header from the ERROR frame.
This is often not sufficient to resolve the issue.
For example, users can get a Bad CONNECT message when connecting at the STOMP level. The body of the frame would add the following information, which is really useful:
Virtual host 'aroundgame.ru' access denied
Appending the body of the ERROR frame to the exception message would go a long way in helping debugging issues.
At the moment, the message of the
StompErrorFrameReceived
exception only contains themessage
header from the ERROR frame. This is often not sufficient to resolve the issue.For example, users can get a
Bad CONNECT
message when connecting at the STOMP level. The body of the frame would add the following information, which is really useful:Appending the body of the ERROR frame to the exception message would go a long way in helping debugging issues.