在 WCF 中实现基本身份验证

发布于 2024-12-09 14:12:10 字数 171 浏览 0 评论 0原文

我需要在 WCF 中实现基本身份验证,但用户凭据存储在数据库而不是 Active Directory 中。因此,每当客户调用我的服务方法时,我都必须获取用户名和密码。来自 SOAP 标头的密码并使用数据库进行身份验证。任何人都可以指出一些很好的参考来实现这一点吗?

注意:该服务使用 basic-http 绑定。

I've a requirement to implement basic authentication in WCF but the user credentials are stored in database instead of Active Directory. So whenever a client call my service method I've to get the username & password from the SOAP headers and authenticate using database. Can any body point out some good references to implement this?

Note: The service is using basic-http binding.

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

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

发布评论

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

评论(1

醉殇 2024-12-16 14:12:10

你真正想用什么?您将多个身份验证策略组合在一起,因为基本身份验证通常指基本 HTTP 身份验证,并且它不使用 SOAP 标头。它使用 HTTP 标头。

如果您想使用基本 HTTP 身份验证,您的选择因托管类型而异:

如果您想使用基于 SOAP 标头的身份验证,您可以再次使用自定义密码验证器。

What are you really want to use? You are combining multiple authentication strategies together because Basic authentication usually refers to Basic HTTP authentication and it doesn't use SOAP header. It uses HTTP header.

If you want to use Basic HTTP authentication your choices differ by hosting type:

If you want to use authentication based on SOAP header you can again use custom password validator.

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