I'm developing an application where I need real-time communication and file upload. I'd preferably like to do it over a single connection with multiplexed channels. I see there is a an extension to the websocket protocol to allow multiplexing but I don't think there is yet browser support, if there is.. I have no idea how to use it.
I'm wanting to develop the server in java. The node server for socketio had a weird bug with namespaces and the java server for it didn't work correctly with namespaces.
I want a simple multiplexing system so that I can send some json and binary at the same time. Is there something existing for this or do I need to create something myself, if so.. where do I start?