Pocket PC WCF实现Windows身份验证
连接到 WCF 服务时,我需要在 Windows Pocket PC 5.0 上实现 Windows 身份验证。是否可以让用户输入其凭据,然后将其传递到 WCF 服务以进行身份验证?
我意识到袖珍 PC 应用程序没有可以放入模拟详细信息的 app.config
I need to implement windows authentication on a windows Pocket PC 5.0 when connecting to the WCF service. Is it possible to let the user enter their credentials which can then be passed to the WCF service for it to authenticate against?
I realize that pocket PC applications do not have an app.config where impersonation details can be put in
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
想通了这一点。必须将 WCF 中的安全类型更改为 Windows(从 NTLM)
在袖珍电脑应用程序中,我必须指定服务 URL 并创建一个传递用户详细信息的网络凭据。
现在可以工作了:)
Figured this out. Had to change the security type in the WCF to Windows (from NTLM)
In the pocket pc application, I had to specify the service URL and create a network credential passing in the user details.
Works now :)