I am trying to implement socket.io in my azure project. I followed the instructions mentioned here https://github.com/tjanczuk/iisnode to install iisnode on my windows 8. Everything installed fine and the sample node.js app which comes with iisnode here http://localhost/node/helloworld/hello.js
is running fine too.
But when i run my App.js in the azure project on my VS 2012 , i get the error "Handler "iisnode" has a bad module "iisnode" in its module list". It has been very frustrating.
Web Config
<add name="iisnode" path="App.js" verb="*" modules="iisnode" />
Does anyone what the problem can be? Any ideas at all would be deeply appreciated....i have been struck at this all day.
EDIT:
My application was running on iis express so I installed IISNode for IIS Express from Web Platform Installer. But i think IISNode for IIS express is available only for x86 becasue it was looking for node.js in my Program File(x86) so i had to install the x86 version of node.js even though my system is 64bit. After that socket.io is working, but when i open my App.js in browser which contains socket.io implementation i get the following error. Should i be concerned about this error? because socket.io implementation is working fine