From various article i came to know that Windows 7 does not supports web sockets. please correct me if i am wrong
Lets say my client is using Windows 7 OS and Chrome for audio/video calling.
Server is built on Nodejs/SignalR.
I would like to know whether Audio/Video calls are supported on Windows 7. How to check whether two clients are connected?
Currently i am trying audio calling same network.
Thanks, Krishna
As comments state, the web browser has its own implementation of websockets. But this is when talking about client side.
Your information that Windows 7 don't support websocket may have to do with the server side and the version of IIS that comes with Windows 7. The Websocket support was not introduced until IIS 8.0 and the version that comes with Windows 7 is IIS 7.5. You might be able to upgrade to IIS 8.0 to get the Websocket feature. But all this problems related to IIS is invalid if you already decided to use node.js becaus then you will probably take care of all server side signaling there.