我有一个Web角色,我正在尝试使用模拟器在本地运行。我让它在另一台计算机上工作,但我不能让它在另一台计算机上工作,并且已经远远地重新格式化并从头开始。
当我从Visual Studio启动网站时,Chrome会显示以下消息:
This webpage is not available
The connection to 127.0.0.1 was interrupted.
底部还列出了错误代码:
Error 101 (net::ERR_CONNECTION_RESET): The connection was reset.
构建输出中有一件有趣的事情是这些行:
Starting process 'C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\Extensions\Microsoft\Windows Azure Tools\v1.8\Debugger\WindowsAzureDebugger.exe' with arguments '"C:\Program Files\IIS Express\iisexpress.exe" /trace:error /config:"C:\Users\brian\AppData\Local\dftmp\Resources\159c7254-b7d0-4076-a4fd-820b00feca5f\temp\temp\RoleTemp\applicationHost.config" /site:"deployment18(27).AzureApp.MyApp.Web_IN_0_Web"'...
Process 'C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\Extensions\Microsoft\Windows Azure Tools\v1.8\Debugger\WindowsAzureDebugger.exe' exited with exit code 0.
如果我从命令行运行C:\Program Files\IIS Express\iisexpress.exe" /trace:error /config:"C:\Users\brian\AppData\Local\dftmp\Resources\159c7254-b7d0-4076-a4fd-820b00feca5f\temp\temp\RoleTemp\applicationHost.config" /site:"deployment18(27).AzureApp.MyApp.Web_IN_0_Web"
,我收到以下消息:
The system cannot find the file specified.
Unable to start IIS Express in background.
我不知道它找不到哪个文件,但我已经确认我传递的配置文件确实存在。任何人都知道这里发生了什么?
答案 0 :(得分:1)
虽然我无法告诉您问题的真正根本原因,但我可以提出一些方法来解决问题:
答案 1 :(得分:0)
Procmon“http://technet.microsoft.com/en-us/sysinternals/bb896645”可以帮助您找到丢失的文件......
答案 2 :(得分:0)
希望有人在遇到类似症状时偶然发现这个答案。在角色缓存中删除时,<dataCacheClients>
部分已从中移除。不知何故,web.config中还剩下<dataCacheClients>
部分。一切,并成功编译和部署到模拟器。但是,由于缺少applicationHost.config,该角色将无法启动。
修复只是从web.config文件中删除不必要的<dataCacheClients>
部分。