在 WCF 中捕获未处理的异常
在WCF中,是否有一个事件或方法可以捕获未处理的异常,或者我是否需要在任何方法中放置try/catch?
In WCF, is there an event or method that catches unhandled exceptions, or do I need to put a try/catch in any method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,创建一个实现
IErrorHandler< 的类/code>
界面:
Yes, create a class that implements the
IErrorHandler
interface:您应该执行内部和外部 TRY/Catch 块。
因此,第一个方法以 Try
Then 开头,如果在另一个方法中抛出任何内容,则它默认为公开方法中的方法中的通用 catch,以将值返回给客户端。
我总是在我的 catch 块中使用日志记录来告诉管理员出了什么问题,但我总是让外部 catch 返回类似“请排除我们的 Appogies WCF.Blah 服务已失败。请查看服务器日志以获取完整详细信息”的值。
这样您就可以进行错误处理、日志记录并向您的客户发送良好的消息。
You should do Inner and outer TRY/Catch Blocks.
So the first method starts with Try
Then if anything is thrown within another method it defaults to your generic catch in the method that is in the exposed method to return a value to the client.
I always use logging in my catch blocks to tell an admin what went wrong but I aways have the outer catch return a value of something like "Please Except our Appogies the WCF.Blah service has failed. Please review the server logs for complete details"
This way you have error handling, logging and nice messages to your clients..