Pocket PC WCF实现Windows身份验证

发布于 2024-11-09 09:31:07 字数 147 浏览 6 评论 0原文

连接到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迟到的我 2024-11-16 09:31:08

想通了这一点。必须将 WCF 中的安全类型更改为 Windows(从 NTLM)

在袖珍电脑应用程序中,我必须指定服务 URL 并创建一个传递用户详细信息的网络凭据。

现在可以工作了:)

proxy.Url = "http://sds-ws65/MicrosoftDynamicsAXAif50/table1service.svc";
            proxy.Credentials = new System.Net.NetworkCredential("username", "password", "domain");

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 :)

proxy.Url = "http://sds-ws65/MicrosoftDynamicsAXAif50/table1service.svc";
            proxy.Credentials = new System.Net.NetworkCredential("username", "password", "domain");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文