小编典典

打开 IncludeExceptionDetailInFaults(来自 ServiceBehaviorAttribute 或来自配置行为)在服务器上

all

我有一个运行良好的 WCF 服务,但发生了一些变化,我不知道是什么。

我得到这个例外:

System.ServiceModel.FaultException:由于内部错误,服务器无法处理请求。有关错误的更多信息,请在服务器上打开
IncludeExceptionDetailInFaults(来自 ServiceBehaviorAttribute
或来自配置行为)以便将异常信息发送回客户端,或根据 Microsoft .NET Framework 3.0 SDK 文档打开跟踪并检查服务器跟踪日志。

这很令人困惑,因为我正在运行 .NET 4.0。

我在哪里打开IncludeExceptionDetailInFaults?我正在努力寻找它。


阅读 114

收藏
2022-08-24

共1个答案

小编典典

在文件中定义行为.config

<configuration>
  <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior name="debug">
          <serviceDebug includeExceptionDetailInFaults="true" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
    ...
  </system.serviceModel>
</configuration>

然后按照以下方式将行为应用于您的服务:

<configuration>
  <system.serviceModel>
    ...
    <services>
      <service name="MyServiceName" behaviorConfiguration="debug" />
    </services>
  </system.serviceModel>
</configuration>
2022-08-24