WCF Web 服务 ASP.Net C# 4.0 的授权属性
团队的一部分创建了 WCF Web 服务,我必须使用 Asp.Net 角色来保护它。我想过很多种可能性,比如创建一个授权属性(类似于 MVC 框架中的属性),但我感觉完全迷失了。有人知道从哪里开始吗?
任何回应表示赞赏。谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用自定义 UserNamePasswordValidator 来保护 WCF 服务。
查看此博客文章:http://codebetter.com/petervanooijen/2010/03/22/a-simple-wcf-service-with-username-password-authentication-the-things-they-don-t-tell-你/
I use a custom UserNamePasswordValidator to secure WCF services.
Check this blog post: http://codebetter.com/petervanooijen/2010/03/22/a-simple-wcf-service-with-username-password-authentication-the-things-they-don-t-tell-you/
我认为您应该使用自定义角色提供程序。可以从代码中手动使用它或使用PrincipalPermissionAttribute。当 WCF 服务方法用属性修饰时,将使用您的角色提供程序(应在 web.config 文件中定义)来授权用户
I think you should use a Custom Role Provider. It can be used manually from the code or using PrincipalPermissionAttribute. When WCF service method is decorated with the attribute your Role Provider will be used (it should be defined in web.config file) in order to authorize the user