使用访问令牌对用户进行身份验证 - WCF 服务
我们正在开发一组 WCF 服务,用于在应用程序中实现业务逻辑。该应用程序为此应用程序使用基于角色的安全性。用户被分为不同的角色,如管理员、经理、员工等。我们希望确保属于特定角色的用户只能调用特定的方法。 WCF 服务公开基于 http 的端点以及基于 TCP 的端点
。我们希望使用访问令牌来实现身份验证。任何帮助表示
赞赏 萨巴里什
We are developing a set of WCF Services for implementing the business logic in an application. The application using role based security for this application. The users are categorized in to different roles like Administrators , Managers , Employees etc. We want to ensure that users belonging to specific roles can only call specific methods. The WCF Services exposes a http based endpoint as well as a TCP based end point
We want to implement authentication using acess tokens. any help is appreciated
Regards
Sabarish
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WCF 数据服务不支持 TCP 端点 - 它只能通过带有
webHttpBinding
的 HTTP 端点公开。另外,我不确定您希望如何将基于标准角色的安全性应用于数据服务资源。请检查本文中的授权部分。这让我产生了一个问题:您知道 WCF 服务和 WCF 数据服务之间的区别吗?你到底在用什么?
WCF data service doesn't support TCP endpoint - it can be exposed only through HTTP endpoint with
webHttpBinding
. Also I'm not sure how you want to apply standard role based security to data service resources. Check authorization section in this article.It leads me to questions: Do you know the difference between WCF Service and WCF Data Service? What exactly are you using?