Reputation: 21
Please give me an example on socket io connecting the server using java client and server. Describe socket io jar details also. I have googled but does not get the correct source code.
Upvotes: 2
Views: 4733
Reputation: 567
Socket.IO Server is not a Java implementation. Consequentially you can not have a Java server. You need to get some Java adaptation of Socket.IO, example:
Netty Socket.IO Java Implementation
Fortunately, Socket.IO has a Java client implementation you can use.
Socket.IO Java Client Implementation
Both links have examples and demo's.
Upvotes: 1