hoaproject / Websocket

The Hoa\Websocket library.
https://hoa-project.net/
423 stars 75 forks source link

Add support for WAMP (Web Application Messaging Protocol) #26

Open CircleCode opened 9 years ago

CircleCode commented 9 years ago

WAMP is getting more and more attention. We should add support for WAMP into Hoa\WebSocket.

CircleCode commented 9 years ago

once supported, Hoa should be added to http://wamp.ws/implementations/

Hywan commented 9 years ago

Any volunteers? /cc @hoaproject/hoackers

jignesh87 commented 9 years ago

Hello..Hywan I wanna streaming video is it posiible?. Thanks.

Hywan commented 9 years ago

@jignesh87 Absolutely, it is possible, but it is not the goal of Hoa\Websocket for several reasons. Firstly, the WebSocket protocol is based on TCP and this kind of network is not suitable for video streaming since it is a “connected” mode. You are rather likely to use UDP, which is a “not-connected” mode. Secondly, WebSocket is designed for full-duplex connections, which means that the server can talk to the client and vice versa. In the case of a video streaming, you don't want the client to send data to the server. Finally, I encourage you to come on IRC to ask your question. We are here to help you.

jignesh87 commented 9 years ago

Thank you Hywan for reply. I will come on IRC soon. Thank you again.:)

Neofox commented 7 years ago

Hello, any news on the implementation of WAMP? Thanks

Hywan commented 7 years ago

@Neofox We have zero demand for that yet, and it is a huge work. We are not going to implement this specification if no one asks it :-).