RESTful WCF 服务安全
我们如何验证/授权 WCF RESTful 服务(使用 webHttpBinding(而不是 wsHttpBinding,如 SOAP 情况))? 即我们想要使用成员身份/角色来允许(或禁止)用户根据其角色使用每个 Web 方法。
提前致谢。 宜兰.
How we could authenticate/authorize WCF RESTful service (that uses webHttpBinding (and not wsHttpBinding, like in SOAP case))?
I.e. we want to use Membership/Roles to permit (or prohibit) user consume each web method according his role.
Thanks in advance.
Ilan.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用证书来保护服务或在标头中发送用户名和密码。然后,您可以通过向服务实现
IAuthorizationPolicy
来添加行为,这样您就不必在公开的每个 Web 服务方法中实现安全检查。在 web.config 中,您告诉服务使用授权策略
另一种选择是在 IIS 服务器上设置 SSL,以便它需要 SSL 和客户端证书才能连接到任何页面。
You can use certificates to secure the service or send the username and password in the header. You can then add a behavior by implementing
IAuthorizationPolicy
to the service so that you don't have to implement the security check in every web service method that you expose.In web.config you tell the service to use the authorization policy
Another option is to setup SSL on the IIS Server so that it requires SSL and client certificate to connect to any page.