WCF 操作日志记录

发布于 2024-08-04 23:17:54 字数 329 浏览 7 评论 0原文

我想记录 WCF 操作的性能,特别是如果某个操作的执行时间超过给定阈值,则会在日志中创建警告。

我们首先实现 IDispatchMessageInspector,它允许我们对每个操作进行计时并执行日志记录。

但是,我希望能够将用户名附加到日志中,并且在调用 IDispatchMessageInspector 时似乎未设置 Thread.CurrentPrincipal。 (我们使用自定义用户名/密码并实施了 IAuthorizationPolicy)。

有没有办法从 IDispatchMessageInspector 获取用户名,或者有更好的选择来记录操作?

提前致谢 马特

I'd like to log the performance of our WCF operations, in particular if an operation takes longer to execute than a given threshold it creates a warning in a log.

We have started by implementing IDispatchMessageInspector which allows us to time each operation and perform the logging.

However, I'd like to be able to append the username to the log and it appears that the Thread.CurrentPrincipal is not set when the IDispatchMessageInspector is called. (We are using custom username/password and have implemented IAuthorizationPolicy).

Is there a way I can obtain the username from IDispatchMessageInspector, or is there a better option for me to log operations?

Thanks in advance
Matt

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

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

发布评论

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

评论(1

<逆流佳人身旁 2024-08-11 23:17:54

您可以使用 WCF 跟踪

http://msdn.microsoft.com/en-us /library/ms733025.aspx

这包括带有开始和停止时间的活动跟踪。

You could use WCF Tracing

http://msdn.microsoft.com/en-us/library/ms733025.aspx

This includes activity tracing with start and stop times.

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