Is there a Java/JVM server that supports streaming binary over websocket? -
does there exist open source java server/library/framework supports bidirectional streaming of binary on websockets? looked @ couple of them couldn't find them mentioning binary support.
this explains want do, think: http://binaryjs.com/
want java/jvm server instead of node.js.
so, want send raw bytes , forth between client , server little overhead possible.
if there one, direct link documentation using binary appreciated.
tomcat 7 has built in support web sockets via org.apache.catalina.websocket.websocketservlet.
there example of writing binary data using subclass of class here: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/examples/web-inf/classes/websocket/echo/echostream.java?view=markup
high level root of how-to here: http://tomcat.apache.org/tomcat-7.0-doc/web-socket-howto.html
Comments
Post a Comment