I\'m stuck on why a node.js app that was moved to an IIS7 server is now failing. I know IIS7 doesn\'t support web sockets but my understanding was that socket.io would fall
For socket.io v2.0.3 (js client),when you use socket.io on client side the client socket.io makes some network calls as explained:
When io.connect() is called, the socket.io library makes a call to the server which looks like
?EIO=3&transport=polling&t=LqtOnHh
,
server responds with something like
"90:0{"sid":"pcJM_AEZirrJT-DuAAUy","upgrades[],
"pingInterval":3600000,"pingTimeout":3600000}2:40"
here the server generates a socket object on server side and sends its id back to the client.
After this client makes another call to the server which is something like
?EIO=3&transport=polling&t=LqtR6Rn&sid=0JFGcEFNdrS-XBZeAAXM
this is the long poll call that client makes to the server, if you see here it is passing the sessionId which it received in first call above, if the call goes to same node which generated that sessionId, the node identifies the socket connection for which the request has been made and responds.
But behind ELB the call may go to some other node that didn't generate this sessioId, in that case the node will not be able to identify the sessionId for which the call was made and hence responds with {"code":1,"message":"Session ID unknown"}
You will also see this error in case of long polling not getting answered or getting timeout.