获取 Silverlight 5 WCF 服务的完整异常跟踪
Getting Full Exception Trace for Silverlight 5 WCF Service
我有一个 Silverlight 5 RIA,其中内置了一些 WCF 服务作为解决方案的一部分。
在申请 运行 期间,我遇到以下(相当普遍的)错误:
at NetVisSolution.AFDiscoveryService.AFDiscoveryServiceClient.OnGetChildrenElementsFromParentCompleted(Object state)
Caused by: The remote server returned an error: NotFound.
我希望得到更详细的异常代码。
以下文章起初看起来很有希望:
我想尽可能避免手动编辑程序集,除非有一种真正万无一失的方法,不涉及调整 public 密钥标记等。
谁能提出可行的方案?
谢谢大家。
使用这个:
<serviceBehaviors>
<behavior name="">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
和
看到这个:
https://msdn.microsoft.com/ru-ru/library/ee844556(v=vs.95).aspx
和
我有一个 Silverlight 5 RIA,其中内置了一些 WCF 服务作为解决方案的一部分。
在申请 运行 期间,我遇到以下(相当普遍的)错误:
at NetVisSolution.AFDiscoveryService.AFDiscoveryServiceClient.OnGetChildrenElementsFromParentCompleted(Object state)
Caused by: The remote server returned an error: NotFound.
我希望得到更详细的异常代码。
以下文章起初看起来很有希望:
我想尽可能避免手动编辑程序集,除非有一种真正万无一失的方法,不涉及调整 public 密钥标记等。
谁能提出可行的方案?
谢谢大家。
使用这个:
<serviceBehaviors>
<behavior name="">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
和 看到这个: https://msdn.microsoft.com/ru-ru/library/ee844556(v=vs.95).aspx 和