socket.io-client-java icon indicating copy to clipboard operation
socket.io-client-java copied to clipboard

Full-featured Socket.IO Client Library for Java, which is compatible with Socket.IO v1.0 and later.

Results 135 socket.io-client-java issues
Sort by recently updated
recently updated
newest added

I added a defensive improvement and documentation to address your issue. - In Socket.emit(...), the client now logs a warning if you emit a JSON-looking string (e.g., "{...}" or "[...]"),...

I try to use: mSocket.emit("authentication", "{me: 1449240991}") Nothing came in server side, besides server can send and emit to client normaly.

question

# Add WebTransport Support to Socket.IO Java Client This PR adds comprehensive WebTransport support to the Socket.IO Java client ecosystem, enabling modern HTTP/3-based real-time communication with automatic fallback to traditional...

**Is your feature request related to a problem? Please describe.** Currently, the Socket.IO Java client supports communication over polling and WebSockets, but it does not provide native support for [WebTransport](https://developer.mozilla.org/en-US/docs/Web/API/WebTransport)...

enhancement

JavaScript version of socket.io supports providing authentication as a callback function here: https://socket.io/docs/v4/client-options/#auth This PR adds same exact functionality to the java version.