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

When I tried to test how many socket connections I could create, I found that only 64 were connected and the rest were disconnected ``` IO.Options options = new IO.Options();...

question

**Describe the bug** I'm trying to reach the python-based server via java-based Socket.IO client. While the connection is successful (detected by catching EVENT_OPEN and EVENT_CONNECT events), no other responses from...

bug

Hi, I am not sure where the repo is to edit/update the documentation here: https://socketio.github.io/socket.io-client-java/initialization.html Could you please add a section around multiplexing. I have spent hours debugging an issue...

This is not so much of a bug and more a request/question. Is there planned support for the websocket extension on per-message deflate compression? It's in the current socket.io JS...

enhancement

I have a long running server app that connects to another [target] service via **https** protocol. Now sometimes I get an error **"io.socket.client.SocketIOException: timeout"**. I am using a default timeout...

needs investigation

Hi, this is my client side code in android java ` IO.Options options = new IO.Options(); options.forceNew = true; options.reconnectionDelay = 500; options.reconnectionDelayMax = 60000; options.timeout = 10000; MainActivity.socket =...

needs investigation

Hello, I'm trying to integrate socket.io in my Kotlin application but when I launch it, it doesn't look like it's trying to connect to the server. What I tried: This...

needs investigation

OkHttp version in use: `com.squareup.okhttp3:okhttp:3.12.1` socket.io-client-java version in use: `io.socket:socket.io-client:1.0.0` Crashlog: ``` kotlin.KotlinNullPointerException: at okhttp3.internal.ws.RealWebSocket.runWriter (RealWebSocket.java:398) at okhttp3.internal.ws.RealWebSocket.close (RealWebSocket.java:391) at okhttp3.internal.ws.RealWebSocket.close (RealWebSocket.java:366) at io.socket.engineio.client.transports.WebSocket.doClose (WebSocket.java:161) at io.socket.engineio.client.Transport$2.run (Transport.java:86) at io.socket.thread.EventThread.exec...

needs investigation

It would be nice to have kotlin extensions support for this library. It'll make easy development for kotlin. For e.g. ```kotlin socket.on("chat-message") { data -> // handle data } ```

enhancement

How to prevent socket disconnect until user disconnect the socket ?

documentation