不发送 StackTrace 的 WCF 故障异常
我有一些带有预定义 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过使用 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.