You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains a very simple websocket server implementation in pure java. This implementation is 100% conformant to the websocket protocol specification RFC 6455 and passing all test cases in Autobahn|Testsuite.
This repository contains a very simple websocket server implementation in java.
This implementation is 100% conformant to the websocket protocol specification RFC 6455
and passing all test cases in Autobahn|Testsuite.
What is websocket?
It is a protocol that handles the dual communication over a single TCP connection.
It is designed to use over the web. In short, it is a socket over web (http). You can read
more details here.
For who we developed
For those who want simplest and easiest way to use
For those who want to learn how to build websocket server in plain java
For those who want to run websocket server without a dedicated web server like Tomcat
, Jetty (or) something else.Of course you can use this library with them as well.
For those who want to run standalone websocket server on small computers or embedded systems like mobile phones or routers or etc..
Autobahn|Testsuite
The Autobahn|Testsuite is a fully automated test suite to verify client and server
implementations of the WebSocket Protocol for specification conformance and implementation robustness.
Learn more about Autobahn|Test.
Example Usages
Creating a websocket server using our library is as simple as the following two tasks.
Create the Endpoint class
Register it with BasicContainer
Done
See the following piece of code that registered the Endpoint class with container
Free to used any part of the codes any way you want.
We valued your feedback most.
Please give any kind of feedback you can. Suggestions, Issues Reporting or anything.
You are more than welcome to contribute the project or report any kind of issue you faced
We will fixed instantly
This repository contains a very simple websocket server implementation in pure java. This implementation is 100% conformant to the websocket protocol specification RFC 6455 and passing all test cases in Autobahn|Testsuite.