从 C# 访问经过 SPNEGO 身份验证的 Web 服务

发布于 2024-10-25 23:24:10 字数 145 浏览 6 评论 0原文

我们有一个 Web 服务,通过 HTTP 提供数据并通过 SPNEGO(和单点登录)对用户进行身份验证。我们想为此 Web 服务编写一个 C# 客户端。

.NET 中是否有任何标准/提供的方法来生成必要的令牌?广泛的谷歌搜索表明,SPNEGO 没有原生支持。

We have a web service that serves data over HTTP and authenticates users via SPNEGO (and single sign-on). We want to write a C# client for this web service.

Is there any standard/provided way in .NET of generating the necessary token? Extensive Googling suggests that there is no native support for SPNEGO.

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

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

发布评论

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

评论(1

小忆控 2024-11-01 23:24:10

在 Windows 中,以下操作应该可以解决问题:

BasicHttpBinding binding = new BasicHttpBinding();
binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.Windows;
//SSL (https):
binding.Security.Mode = BasicHttpSecurityMode.Transport;

In Windows the following should do the trick:

BasicHttpBinding binding = new BasicHttpBinding();
binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.Windows;
//SSL (https):
binding.Security.Mode = BasicHttpSecurityMode.Transport;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文