如何从 Silverlight 将凭据传递到 WCF 服务以进行 Windows 身份验证
我已启用 WCF 服务进行 Windows 身份验证。如何将凭据从 Silverlight 应用程序传递到服务。 对于凭据,我可以通过代码 WebContext.Current.User.DisplayName 获取用户名和域。但是我如何通过代码获取客户端密码。 serviceClient.Credentials = newSystem.Net.NetworkCredential("用户名", "密码", "Domian");
I have enabled my WCF service for Windows Authentication. How can I pass Credentials to Service from From Silverlight application.
For Credentials I can get User name and domain by code WebContext.Current.User.DisplayName. But how I will get client password through code.
serviceClient.Credentials = newSystem.Net.NetworkCredential("UserName", "Password", "Domian");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您已将客户端配置为使用 Windows 身份验证模式,则应自动完成此操作,请阅读以下链接:
使用 Windows 身份验证来保护 Silverlight 应用程序的服务
It should be done automatically if you have configured the client to use Windows authentication mode, please read following link:
Use Windows Authentication to Secure a Service for Silverlight Applications