8

我有一个与 webRole 调试有关的问题。

不在托管服务或 Development Fabric 中运行。说明:执行当前 Web 请求期间发生未处理的异常。请查看堆栈跟踪以获取有关错误及其源自代码的位置的更多信息。

异常详细信息:System.InvalidOperationException:未在托管服务或 Development Fabric 中运行。

源错误:

在执行当前 Web 请求期间生成了未处理的异常。可以使用下面的异常堆栈跟踪来识别有关异常起源和位置的信息。

堆栈跟踪:

[InvalidOperationException: Not running in a hosted service or the Development Fabric.]
   Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitor.GetDefaultStartupInfoForCurrentRoleInstance() +169
   Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener..ctor() +57

[ConfigurationErrorsException: Could not create Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35.]
   System.Web.Security.Roles.Initialize() +2230194
   System.Web.Security.RoleManagerModule.OnLeave(Object source, EventArgs eventArgs) +68
   System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +148
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +75

这是有关 Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener 的 web.config 部分

<system.diagnostics> <trace> <listeners> <add type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" name="AzureDiagnostics"> <filter type="" /> </add> </listeners> </trace> </system.diagnostics>

4

2 回答 2

14

要检查的一件事:确保您的云项目设置为启动项目。

于 2011-05-06T12:47:44.877 回答
5

大多数 Azure 诊断都需要管理权限。您可能没有以管理员身份启动 Windows Azure Compute Emulator,这就是 API 调用失败的原因。

解决方案 – 以管理员身份启动 Windows Azure Compute Emulator,或者让 Visual Studio 启动模拟器(前提是 Visual Studio 已经以管理权限运行)。

于 2011-10-21T17:50:55.613 回答