使用 NetNamedPipeBinding 托管在 Windows 服务上的 Wcf 服务的安全性

发布于 2024-12-12 00:01:22 字数 126 浏览 1 评论 0原文

我创建了一个 WCF 服务,该服务通过 NetNamedPipeBinding 协议托管在 Windows 服务上。现在我想为此服务提供安全性,因为只有知道用户名和密码的用户才能访问此服务。那么我如何提供方法级别身份验证让用户访问此服务?

I have created a WCF service which is hosted on a windows service over NetNamedPipeBinding protocol.Now I want to provide security to this service, as in users with username and passwords known only should access this service.So how do I provide a method level authentication to users to access this service?

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

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

发布评论

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

评论(1

过去的过去 2024-12-19 00:01:22

NetNamedPipe 绑定不支持开箱即用的消息级安全性。这需要自定义绑定。 NetNamedPipe 绑定仅在服务和客户端都在同一台计算机上运行时才起作用,因此假设如果用户有权登录并且服务正在运行,她也有权调用它。如果您需要限制可以调用该服务的用户,您可以随时使用自定义授权管理器< /a> 或 基于角色的安全性

NetNamedPipe binding doesn't support message level security out of the box. That would require custom binding. NetNamedPipe binding works only when both service and client are running on the same machine so there is assumption that if user has permissions to log in and the service is running she have also permission to call it. If you need to restrict users who can call the service you can always use custom authorization manager or role based security.

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