WCF - 向客户端验证服务
想象一下一个自托管的 WCF 服务,以及一个通过代理连接的客户端。
是否可以在客户端内实现服务凭证的自定义验证?即是否可以验证自定义服务用户名和密码?在服务主机中设置客户端凭据的自定义验证非常容易,但我不确定是否可以反之亦然。
感谢您的阅读。
克里斯.
Imagine a self hosted WCF service, and a client that connects via a proxy.
Is it possible to implement custom validation of service credentials from within the client? i.e. Is it possible to validate the custom service user name and password? It's very easy to set up custom validation of client credentials in a service host but I'm not sure if it's possible to do it the other way around.
Thanks for reading.
Chris.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为我可以通过自定义服务身份并在客户端验证它来实现我所追求的目标。
I think I can achieve what I'm after by customising the service identity and validating that at the client.