Abadaba
Abadaba

Reputation: 1466

Windows azure emulator 127.0.0.1:81 not accessible in internet explorer

I am using some example code, http://www.windowsazure.com/en-us/develop/nodejs/tutorials/app-using-socketio/, to create a basic socket.io app with the WorkerRole. Upon starting the emulator, I go to access: 127.0.0.1:81, but IE will not load the page saying it's not accessible.

Here is the output of powershell

PS Y:\Project\WorkerRole1> Start-AzureEmulator -launch
Creating local package...
Starting Emulator...
Role is running at tcp://127.0.0.1:81
Role is running at tcp://127.0.0.1:8
Started

Edit: Another note, I am using the Parallels VM with Windows 8 on OSX 10.8.2

Upvotes: 0

Views: 536

Answers (1)

Shaun Xu
Shaun Xu

Reputation: 4676

Please check the value of process.env.port to see if it's 80 or 81. This might because you are listening on 80 but the local emulator use 81.

Upvotes: 1

Related Questions