Raja Vel
Raja Vel

Reputation: 21

Socket io connecting server in java

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

Answers (1)

Kristijan Rusu
Kristijan Rusu

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

Related Questions