I have standart plan in azure websites and websockets enabled in its configuration panel. I use socket.io and node.js. Both client and server show using 'polling' as its transport instead of websocket. On the server I have these lines and they output 'polling'.
setInterval(function(){
console.log(socket.conn.transport.name);
}, 2000);
On localhost the transport used is websocket. I have already tried things proposed in other post, like this one: Socket.io connection reverts to polling, never fires the 'connection' handler, but they do resolve the problem.
Is there a way to make azure work use websocket as a transport.