http://qs321.pair.com?node_id=11120230


in reply to Net Websocket Server

roboticus explained it from the implementation side, but you can also look to the specification:

A frame has an associated type. Each frame belonging to the same message contains the same type of data. Broadly speaking, there are types for textual data (which is interpreted as UTF-8 [RFC3629] text), binary data (whose interpretation is left up to the application), and control frames ...

So Net::WebSocket::Server allows you to specify handlers for the two kinds of data frames.

Update:

since whatever I send() to the server, it is always received as utf8, even if I declare type='binary' in the JavaScript socket declaration.

That would be a JS issue; you haven't shown your JS code and I don't see this "type='binary'" in the WebSocket API. This works fine for me:

var socket = new WebSocket("ws://localhost:8080"); socket.send("Hello"); // sent as text (UTF-8) socket.send( new Blob(["World"]) ); // sent as binary

Replies are listed 'Best First'.
Re^2: Net Websocket Server (updated)
by alvise (Acolyte) on Aug 03, 2020 at 20:54 UTC
    thank you haukex, I didn't think to add "new Blob" to the argument of send(). That solved my problem. Your suggestion is highly useful and appreciated. Regards from Rome, Italy.