I'm playing around with websockets and I noticed that when my server sends a message to the client, there is an extra '[]' character in front of the message. This is preventing JS from parsing the json properly.
Any idea what this character is???
|
I'm playing around with websockets and I noticed that when my server sends a message to the client, there is an extra '[]' character in front of the message. This is preventing JS from parsing the json properly. Any idea what this character is??? |
|||||
|
|
In addition to an HTTP-like handshake between client and server, each message from starts with '\x0' and ends with '\xff'. In future drafts of the WebSockets protocol (beyond 03/76), the framing delimiters have been replaced by framing which includes a leading length and no trailing special character. |
|||
|
|
|
Found a solution: by js, just use the replace function of javascript example, assume msg is the string returned by websocket.message function
Or, without jQuery:
Hope someone will find this helpful. |
||||
|
|
|
It's not ok that YOU (Client) see this \x00 delimiter in your msg! Normally your msg looks like this \x00 MSG \xFF. \x00 and \xFF will be cut on client side, so there must be a problem on server side... look, that you dont wrap twice your msg!? |
|||
|