Details
-
Bug
-
Status: Resolved
-
Critical
-
Resolution: Duplicate
-
5.5.1
-
None
-
None
-
Any
-
Patch Available
Description
The method
org.apache.activemq.transport.ws.StompSocket.java
public void sendToStomp(StompFrame command) throws IOException { outbound.sendMessage(WebSocket.SENTINEL_FRAME, command.toString()); }
calls toString() method of the StompFrame instance instead of the format() method. The message body is truncated by the toString() to 64 chars.