如何限制使用WCF服务的用户
我有一个 WCF 服务,必须由某些 Active Directory 用户调用。
如何将该 WCF 服务允许的调用者限制为特定 AD 组?
I have a WCF service that must be called by some Active Directory user.
How can I restrict the allowed callers for that WCF service to a specific AD group?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您似乎正在使用 Windows 身份验证,因此您将能够使用 Active Directory 组和这些组中用户的成员身份来限制服务方法的使用。
这样,您就可以使用声明性语法将调用者限制为特定组:
任何不属于您指定的组的成员并尝试调用此方法的人都将收到
SecurityException
- 但不会收到其他任何消息。这就是您要找的吗?
Since you appear to be using Windows authentication, you will be able to use the Active Directory groups and membership of your users inside those groups to restrict the usage of service methods.
With this, you can then use declarative syntax to limit callers to certain groups:
Anyone who is not member of that group you specified, and tries to call this method, will receive a
SecurityException
- but nothing else.Is that what you're looking for?