Hi all the stackoverflow people i need an websocket server and client implementation example in jAVA, i researched and not found tangible result, please help me thank you
-
7Try google.com next time ;-)nowaq– nowaq2011-11-24 13:19:12 +00:00Commented Nov 24, 2011 at 13:19
-
4You really need to demonstrate that you have done some work at least. Did some google searches, read some documents, played with some test code.Gray– Gray2011-11-24 15:41:42 +00:00Commented Nov 24, 2011 at 15:41
-
See stackoverflow.com/questions/43163592/…Stefan– Stefan2019-01-23 12:57:01 +00:00Commented Jan 23, 2019 at 12:57
Add a comment
|
3 Answers
First two results on a google search for java websocket. How did you not find these?
1 Comment
ixx
I recommend the first one, at least for people which want to see something running quickly. jWebSocket server has tons of dependencies and configuration files, a lot of plugins enabled by default and you don't know what's really necessary. And after you set up everything and you get like 200 lines of debug output in the console you don't know what's about, it doesn't work. With Java-Websocket I was able to run a working example from own java file in 5 minutes.
If you want a simple Java I/O websocket server that supports the full message length and multiple connections check this out http://code.google.com/p/jfraggws/