在 WCF 中使用联合安全性更改用户
我的任务是在使用联合安全性连接到 WCF 服务的组件中实现用户切换。
我可以使用 Tokenclaims.ReadClaim() 来找出当前登录的用户名。
如何使该令牌失效并强制再次登录?
我尝试更改凭据上的用户名和密码,但这似乎不起作用,因为现有的声明仍在使用中。
帮助 :)
I have been tasked with implementing user switching in a component that connects to a WCF service using federated security.
I can use Tokenclaims.ReadClaim() to find out what username is currently logged on.
How do I invalidate this token and force another logon?
I have tried changing the username and password on the credentials, but that doesn't seem to do the trick, as the existing claim is still being used.
help :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议考虑编写自定义
ClientCredentials< /code>
子类。在此类中,您可以管理每次调用使用哪些令牌以及何时使用。您可以在这篇 MSDN 文章中了解有关自定义客户端凭据的更多信息。
I suggest looking into writing a custom
ClientCredentials
subclass. In this class you can manage what tokens are used and when for each call. You can read more about custom client credentials in this MSDN article.