Windows Azure Compute Emulator Error

时间秒杀一切 提交于 2019-11-29 03:23:44

You should compare you and your colleague's internet proxy settings (network settings).

For some reason, it's trying to detect which internet proxy to use for http://127.0.0.1 which it shouldn't - it's local address.

WinHttpGetProxyForUrl(http://127.0.0.1) failed ERROR_WINHTTP_AUTODETECTION_FAILED (12180)

http://msdn.microsoft.com/en-us/library/windows/desktop/aa384097(v=vs.85).aspx

Does it work if you disable auto detect proxy in your network settings?

Another possibility is that error in your log is a Red Herring - this blog post suggests those errors in the log are benign and don't make anything fail:

http://blogs.msdn.com/b/avkashchauhan/archive/2011/01/20/winhttpgetproxyforurl-failed-error-winhttp-autodetection-failed-12180-error-message-in-windows-azure-infrastructure-log.aspx

To get rid of this, you need to disable the “Automatically detect settings” option in the Control Panel -> Network and Internet -> Internet Options -> Connections -> LAN Settings.

joelfp

I had the exact same issue and I fixed it by making sure that my port forwarding service (PassPort) was not running prior to starting up the Azure emulator.

When I installed PassPort it installed a Windows service and set it to start automatically. I stopped the service, set it to only start manually, then restarted the Azure emulator. After that I was up and running again.

For some background, the reason I was even using PassPort in the first place was to do some IE8 testing of my Azure hosted web site using a Windows XP VM. I found the steps to set this up on this post which linked to this blog. I can still use PassPort and my VM to test my site in IE8, I just have to make sure not to start the PassPort service until after the Azure emulator and web site are up and running.

Your problem may not be related specifically to a port forwarding service but rather some other service that may have stolen port 81 from the Azure emulator.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!