Whether to use WebSocket or Server Sent Event for sending notifications from server which retrieves social network presence in realtime?

StackOverflow https://stackoverflow.com/questions/18508039

문제

i want to develop a webpage which retrieves from server and shows online presence information of user's contact from various social sites like facebook, google & skype, linked in real time should i use WebSocket or Server Sent Event (SSE) ?

The web application needs to support older browsers and would be deployed over cloud to server 1000s of concurrent users.

도움이 되었습니까?

해결책

Back to the basics. According to this page here: http://www.w3schools.com/html/html5_serversentevents.asp , Internet Explorer does not support SSE. So maybe there's a plugin that can wrap both functions for use in different browsers. Otherwise WebSocket. Your choice though.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top