WCF 数据服务 - 日志记录和身份验证

发布于 2024-12-22 10:43:09 字数 283 浏览 0 评论 0原文

我正在为我的下一个项目评估 WCF 数据服务方法。由于我需要灵活地进行日志记录和身份验证,因此我有几个问题也许您能够回答。

1)我是否能够记录不同级别的事件,例如。警告、错误,并将它们重定向到不同的日志源,如数据库、文本文件、事件日志?

2) 显示如何执行问题 1 所请求的链接

3) 有没有办法引入基于用户名和密码的简单身份验证以及如何完成?

4) 您是否通过直接经验发现使用数据服务而不是创建 WS-* WCF 服务来处理日志记录和身份验证方面的任何限制?

谢谢

I'm evaluating the WCF Data Service approach for my next project. As I would need to be flexible on logging and authentication I have a couple of questions that maybe you are able to answer.

1) Am I able to log different level of events, ex. warnings, errors, and redirect them to a different logging sources as database, text file, event log?

2) A link that shows how to perform the requested on question 1

3) Is there a way to introduce a simple authentication based on user name and password and how it is done?

4) Do you have by direct experience discovered any limitation on using Data Services instead of creating a WS-* WCF service for what concerns logging and authentication?

Thanks

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

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

发布评论

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

评论(1

当梦初醒 2024-12-29 10:43:09

这里有一系列关于 OData 服务身份验证的好博客:http://blogs .msdn.com/b/astoriateam/archive/tags/authentication/

对于日志记录,您应该能够使用 Web 服务器的日志记录工具(我假设通常是 IIS),因为所有错误都会被记录下来。服务报告为错误响应。

您还可以重写 DataService.HandleException 方法并以您想要的任何方式实现您自己的日志记录。
对于一般非错误事件的日志记录,还有处理管道 (DataService.ProcessingPipeline)。您可以注册一个处理程序并实现您自己的日志记录。
我不知道有这么难的样本。

There's a good series of blogs about auth over OData service here: http://blogs.msdn.com/b/astoriateam/archive/tags/authentication/

For logging you should be able to use your web server's logging facilities (typically IIS I assume), since all errors are reported as error responses by the service.

You can also override the DataService.HandleException method and implement your own logging in any way you want.
For logging of general non-error things there's also the processing pipeline (DataService.ProcessingPipeline). You can register a handler and implement your own logging of these as well.
I don't know of a sample of this tough.

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