There is no support for socket.io - 3.x.
@anooj1483 , as noticed in #639
We got the same issue, java socket.io 1.0 client can not connect to a nodejs server using socket.io 3.x.
Anyone know when can we expect support for socket.io - 3.x?
I'm working on this. I think we should have something by the end of the week.
Is the new 1.0.1 now compatiable with socket v3? If not, is there any real eta I can work with?
Is the new 1.0.1 now compatiable with socket v3? If not, is there any real eta I can work with?
2.0.0
I'm working on this. I think we should have something by the end of the week.
That's great ! NB you should specify if the new version is also backward-compatible with a V2 server. If it's compatible, an upgrade path would be to first update clients, and when (say) 95% of clients have updated, update the server to V3 and 5% are left to die. If it's not compatible, upgrade is a lot more complicated (juggle with two different servers and so on).
Version 2.0.0 is out!
The migration guide can be found here: http://socketio.github.io/socket.io-client-java/migrating_from_1_x.html
@IlyaDiallo unfortunately, the new version is not compatible with a v2 server. There is a discussion about that here: https://github.com/socketio/socket.io-protocol/issues/21
Another solution is indeed to have two different servers running in parallel, as suggested here.
Version 2.0.0 is out!
The migration guide can be found here: http://socketio.github.io/socket.io-client-java/migrating_from_1_x.html
@IlyaDiallo unfortunately, the new version is not compatible with a v2 server. There is a discussion about that here: socketio/socket.io-protocol#21
Another solution is indeed to have two different servers running in parallel, as suggested here.
Thanks for the the link, that's exactly was I was talking about - but the idea is not to have servers running in parallel if I understand correctly, it's to add protocol negotiation in the server and client code.
Let's continue this discussion here: https://github.com/socketio/socket.io-protocol/issues/21
Most helpful comment
I'm working on this. I think we should have something by the end of the week.