-
Notifications
You must be signed in to change notification settings - Fork 975
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Transport close when using 2.1.0 client send big message to 4.5.2 NodeJS server #726
Comments
Hi! You are right, we need to take in account the |
So is there a way we can send a big payload now or will your fix be released in the near future? |
The problem here is that when the client is using HTTP long-polling, the packets are concatenated and the total size is over the So as a workaround you can either:
|
I have tried all methods you said:
|
i have same problem but im using java server. have you found any solution ? |
@conan13101998 were you able to figure out any solution for this? |
Describe the bug
When i try to send message to NodeJS Socket.io Server, small message (< 32MB) is succeed but when payload more than 32MB =>
disconnect
event fired with reasontransport close
. Sometime it send 1st big message succeed and another fail because timeout (client auto reconnect after disconnected)Note: I also implemented ACK in both server and client
To Reproduce
Socket.IO server version:
4.5.2
with ExpressServer
Socket.IO java client version:
2.1.0
Client
The text was updated successfully, but these errors were encountered: