如何限制使用WCF服务的用户

发布于 2024-10-03 08:45:08 字数 84 浏览 3 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

梦境 2024-10-10 08:45:08

由于您似乎正在使用 Windows 身份验证,因此您将能够使用 Active Directory 组和这些组中用户的成员身份来限制服务方法的使用。

这样,您就可以使用声明性语法将调用者限制为特定组:

[ServiceContract]
interface IMyService
{
   [OperationContract]
   [PrincipalPermission(SecurityAction.Demand, Role="YourCustomRole")]
   public string MethodLimitedToGroup(string someInput);
}

任何不属于您指定的组的成员并尝试调用此方法的人都将收到 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:

[ServiceContract]
interface IMyService
{
   [OperationContract]
   [PrincipalPermission(SecurityAction.Demand, Role="YourCustomRole")]
   public string MethodLimitedToGroup(string someInput);
}

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?

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