如何在调用 Web 服务时强制客户端(winform)应用程序使用 NTLM

发布于 2024-08-27 12:15:30 字数 205 浏览 7 评论 0原文

我有一个winform应用程序调用IIS中托管的Web服务,默认情况下,客户端应用程序将使用Kerberose对IIS进行身份验证,并且由于某些原因失败。但是同一个应用程序在另一台PC上运行良好(使用不同的用户登录),并且我通过检查 IIS 服务器事件日志发现它正在使用 NTLM。

无论如何,我们可以更改客户端应用程序(winform)身份验证类型吗?

提前致谢

I have a winform application calling web services hosted in IIS, by default, the client app will use Kerberose for authentication to IIS, and it failed for some reasons。 But the same app works fine at another PC(with different user login), and I found it is using NTLM by checking the IIS server event log.

is there anyway we can change the client app(winform) authentication type?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

寒尘 2024-09-03 12:15:30

根据 HttpWebRequest.Credentials 文档,要将请求身份验证仅限于特定方法,您需要创建 CredentialCache 类,将您的凭据绑定到所需的身份验证方法,并将其设置为 Credentials 属性。

As per the HttpWebRequest.Credentials documentation, to restrict the request authentication to particular methods only, you need to create a new instance of the CredentialCache class, bind your credentials to the desired authentication methods and set it to the Credentials property.

清醇 2024-09-03 12:15:30

您是否尝试过使用 Windows 身份验证托管 Web 服务?然后,消费应用程序也必须使用相同的身份验证来访问 Web 服务。

Have u tried hosting the web services with Windows authentication? Then the consuming application must also use the same authentication to access the web service.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文