使用 Elmah 记录 WCF Web 服务的用户名
我们使用此处描述的方法来记录我们的Elmah 的 Web 服务错误。这确实有效,但遗憾的是记录的用户名是空的。
我们进行了一些调试,发现在 ErrorHandler 中记录错误时,HttpContext.Current.User
具有正确的用户集。
我们也尝试过:
HttpContext context = HttpContext.Current;
ErrorLog.GetDefault(context).Log(new Error(pError, context));
并且
ErrorLog.GetDefault(null).Log(new Error(pError));
没有成功。
关于如何让 Elmah 记录用户名有什么想法吗?
顺便说一句,当直接在 Web 服务中记录错误时,会按预期记录用户名。但采用这种方法并不是很 DRY。
We are using the approach described here to log our webservice errors with Elmah. And this actually works, but sadly the username beeing logged is empty.
We did some debugging and found, that when logging the error in the ErrorHandler the HttpContext.Current.User
has the correct User set.
We also tried:
HttpContext context = HttpContext.Current;
ErrorLog.GetDefault(context).Log(new Error(pError, context));
and
ErrorLog.GetDefault(null).Log(new Error(pError));
Without success.
Any ideas on how we can make Elmah log the username?
On a sidenote, when logging the error directly within the Webservice, the username is logged as expected. But taking this approach is not very DRY.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Elmah 从 Thread.CurrentPrincipal.Identity.Name 获取用户,而不是从 HttpContext.Current.User 获取用户。
由于没有方便的方法将自定义数据添加到 Elmah,我建议重新编译代码,并改为调用 HttpContext.Current.User。
Elmah take the user from
Thread.CurrentPrincipal.Identity.Name
and not fromHttpContext.Current.User
.Since there ins't a convenient way to add custom data to Elmah, I would suggest recompiling the code, and calling HttpContext.Current.User instead.
这是我一遍又一遍地看到的问题。虽然可以重新编译代码,但我宁愿建议使用 ELMAH 中内置的功能,如我的博客文章 使用错误过滤钩子丰富 ELMAH 错误。
在您的情况下,可以通过添加
ErrorLog_Filtering
方法来设置所有错误的User
属性:This is a question that I see over and over again. While re-compiling the code is a possibility, I would rather suggest using features built into ELMAH already, as explained in my blog post Enrich ELMAH errors using error filtering hook.
In your case, setting the
User
property on all errors, can be achieved by adding theErrorLog_Filtering
-method:作为重新编译 Elmah 的替代方法,我们可以使用全局方法,该方法在调用 elmah 之前填充 Thread.CurrentPrincipal.Identity.Name。
As an alternative to recompile Elmah, we can use a global method, which populates Thread.CurrentPrincipal.Identity.Name before calling elmah.