I want some clarification on the WebSocket and SSE. In websocket two way communication possible, but in SSE one way.In both connection is persistent, then why is difference ? Is there is difference in the number of port opened with websocket and SSE from client side ?.
Asked
Active
Viewed 65 times
0
-
And what is SSE? Not the RAM instruction set I hope... – Florian Margaine Mar 05 '14 at 13:41
-
BTW you need only one port for websockets. Sockets are by definition bidirectionnal. – Denys Séguret Mar 05 '14 at 13:42
-
http://stackoverflow.com/questions/5195452/websockets-vs-server-sent-events-eventsource – Denys Séguret Mar 05 '14 at 13:44
-
@FlorianMargaine SSE is Server Sent Event. It's a simple one way (server to client) event path. Think stock ticker. – Aaron Aug 26 '16 at 17:38