engine.io-server-java icon indicating copy to clipboard operation
engine.io-server-java copied to clipboard

Engine.IO Server Library for Java

Results 17 engine.io-server-java issues
Sort by recently updated
recently updated
newest added

Hi, how to reject a client connection properly? I have something like this: ``` SocketIoNamespace ns = mSocketIoServer.namespace("/"); ns.on("connection", args -> { SocketIoSocket socket = (SocketIoSocket) args[0]; //verify JWT token...

Hi, I've been trying to follow https://socketio.github.io/engine.io-server-java/spring-integration.html for implementing engine.io in Spring Boot 2.6.*, but the guide seems to be outdated with more recent Spring Boot versions. Is it possibile...

Bumps [jetty-server](https://github.com/eclipse/jetty.project) from 9.4.24.v20191120 to 10.0.10. Release notes Sourced from jetty-server's releases. 10.0.10 Special Thanks to the following Eclipse Jetty community members @​jianglai (Lai Jiang) @​markslater (markslater) @​prenagha (Padraic Renaghan)...

dependencies
java

I have a website that uses EnginIO on both JS client and Java server. Permessage-deflate compression is enabled by default on the client but to get the compression working I...

Are there any plans on supporting Jakarta Servlet 5 API, and more specifically the `javax` to `jakarta` namespace migration? I did an experiment here [mcollovati/engine.io-server-java](https://github.com/mcollovati/engine.io-server-java/tree/jakarta-servlet) if it can be of...

Received this error when sending large text content via polling transport: ``` WARN [2021-12-14 09:31:35,188] io.socket.parser.IOParser: An error occured while retrieving data from JSONTokener ! org.json.JSONException: Unterminated string at 7675...

Right now the library has a hard dependency on org.json. This is problematic for two reasons: 1. org.json has a non standard license which makes people wary 2. You many...

Bumps [ws](https://github.com/websockets/ws) from 7.4.3 to 7.4.6. Release notes Sourced from ws's releases. 7.4.6 Bug fixes Fixed a ReDoS vulnerability (00c425ec). A specially crafted value of the Sec-Websocket-Protocol header could be...

dependencies
javascript

Bumps [engine.io](https://github.com/socketio/engine.io) from 5.1.0 to 5.2.1. Release notes Sourced from engine.io's releases. 5.2.1 :warning: This release contains an important security fix :warning: A malicious client could send a specially crafted...

dependencies
javascript

Is it possible to integrate this library with Spring reactive framework which is no longer supporting HttpServletRequests? Not able to use the Spring example here https://socketio.github.io/engine.io-server-java/spring-integration.html to integrate the library...