不发送 StackTrace 的 WCF 故障异常

发布于 2024-09-29 05:16:52 字数 277 浏览 3 评论 0原文

我有一些带有预定义 FaultContract 属性的 WCF 服务。当抛出 FaultException 异常时,它们会发送 StackTrace、Source 和其他可能未保存的信息。

是否可以仅返回:

  • Detail(来自通用 TDetail)
  • FaultMessageFaultCode
  • 以及可能的)FaultReason

I have some WCF services with predefined FaultContract attributes. When the FaultException<TDetail> exceptions are thrown, they're sending StackTrace, Source and other potentially unsave information.

Is it possible to return only:

  • Detail (from the generic TDetail)
  • FaultMessage
  • FaultCode
  • (and possibly) FaultReason

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

留一抹残留的笑 2024-10-06 05:16:52

您是否尝试过使用 IErrorHandler?另请确保在应用程序配置文件中, IncludeExceptionDetailInFaults 属性设置为 false 并且,可能对最佳实践有帮助。

Have you tried rolling your own fault exception using IErrorHandler? Also make sure in your app config file, the IncludeExceptionDetailInFaults attribute is set to false and, this might be helpful for best pratices.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文