0

每当我在 Visual Studio 中进行调试时,它会将网站部署到 IIS / Compute Emulator 并给出以下消息:

将调试器附加到角色实例“deployment18(521).TestApp.Azure.Website1.Web.UI_IN_0”的 URL“http://127.255.0.0:82/”的 IIS 工作进程时出错。无法在 Web 服务器上开始调试。无法启动 ASP.NET 调试。通过启动项目而不进行调试可以获得更多信息。

然后,当我查看调试器日志时,它说:

http://127.255.0.0:82/debugattach.aspx
----------------------------------------------------------------------
Status code=417 (Expectation Failed)
Protocol version=1.1
Cached=False
Content-Length=60
Cache-Control=private, no-transform
Content-Type=text/html
Date=Thu, 08 Nov 2012 14:52:08 GMT
----------------------------------------------------------------------
The page cannot be displayed because the expectation failed.

有没有人有任何想法?

4

1 回答 1

2

使用失败请求跟踪后,我可以看到我的应用程序初始化 (Web-AppInit)(IIS 8.0 中的新初始化功能)配置导致调试失败。

所以消息是:如果你有 preloadEnabled 和 applicationInitialization 配置部分有点像这样,不要指望能够调试你的 web 应用程序:

 <applicationInitialization doAppInitAfterRestart="true" remapManagedRequestsTo="loading.html" skipManagedModules="true">
      <add initializationPage="/" />
    </applicationInitialization>

我将把它放到 web.release.config 文件中,所以它只在生产中生效。

于 2012-11-08T16:42:09.647 回答