Is there an implementation of HTML5 web socket Java applets?

Is there an implementation of HTML5 WebSockets Java applets?

I would like to use WebSockets for a new project and provide a backwards compatible implementation of WebSockets (for all current browsers without using) using Java (or possibly Flash).

I want to write and support WebSockets on the server side. I just want to deal with the client-side WebSockets API (although this API will be "tampered" with a Java applet if real WebSockets are not available).

Thanks,

Chris.

+6
java html5 applet sockets
source share
3 answers

Here's one possible implementation (uses Flash as a backup):

http://github.com/gimite/web-socket-js

There are no guarantees (I'm not in my development environment right now), but it looks like it will do what you are looking for.

+3
source share

Yes, there is one, see http://www.jwebsocket.org . Your jWebSocket Team.

+2
source share

Speaking as a representative of Kaazing :

We have another solution that provides Java, Flash, Silverlight, and JS support and backward compatibility with all pre-Websocket browsers. The documentation is here .

-one
source share

All Articles