I need to use jsonp-polling for IE, and xhr-polling for Firefox, so I tried to define types of transports on the client side like this:
if (/Firefox[\\
The bug is now fixed in socket.io version 0.9.6, I can use this and it works fine :
socket = io.connect(HOST_REMOTE, { transports: ['xhr-polling'] });
In version 1.0.0 and above:
socket = io.connect(HOST_REMOTE, { transports: ['polling'] });