WIF N层认证
我有一个基本的 3 层应用程序
- 演示/Web (ASP.NET MVC)
- 应用程序服务 (WCF,托管在 IIS 中)
- 数据库 (SQL)
我试图使用 WIF 针对任何层和所有层对用户进行身份验证。目前我已经通过 Web (MVC) 对用户进行了身份验证。
如何将用户令牌传递到下一个令牌?
PS 我正在使用“StarterSTS”项目,您可以在 Codeplex 上找到该项目。
非常感谢
I have a basic 3 tier app
- Presentation/Web (ASP.NET MVC)
- Application Services (WCF, hosted in IIS)
- Database (SQL)
I am trying to authenticate the user against any and all tiers using WIF. At the moment I have authenticated the user against the Web (MVC).
How do I pass the users token through to the next teir?
PS I am using the "StarterSTS" project you can find on Codeplex.
many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要保留 WCF 服务上的原始用户身份,那么您的网站将必须代表该用户向 STS 请求令牌。请求“充当”令牌的输入是发送到第一层(MVC 应用程序)的原始令牌。并非所有 STS 都支持“ActAs”请求,因此您需要仔细检查。
中有示例身份培训套件
If you want to preserve the original user identity on the WCF services, then your web site will have to request a token to an STS on behalf of that user. The input for requesting an "Act As" token is the orignal token sent to the 1st tier (the MVC app). Not all STSs support the "ActAs" request, so you need to double check that.
There are examples in the Identity Training Kit