Soap NTLM 授权

发布于 2024-10-30 12:46:43 字数 227 浏览 0 评论 0原文

我正在尝试访问受 NTLM 授权保护的 Web 服务。通常,对于受基本 HTTP 身份验证保护的普通 Web 服务,我可以通过以下方式使用“授权”标头进行身份验证:

授权:“BASIC OASDmkAsofnASncvosNoaisdf”

,其中“BASIC”后面的字符串是以 base64 编码的“用户名:密码”。

我的问题是,是否可以对 NTLM 做类似的事情?

谢谢!

I'm trying to access a webservice that it's protected with NTLM Authorization. Usually, for a normal webservice protected with basic HTTP Auth I can authenticate using the "Authorization" header in the following way:

Authorization : "BASIC OASDmkAsofnASncvosNoaisdf"

where the string after the "BASIC" its the "username:password" encoded in base64.

My question is, it is possible to do something similar for NTLM?

Thanks!

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

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

发布评论

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

评论(1

岁月静好 2024-11-06 12:46:43

您使用什么客户端来提供网络服务?如果您使用的是 microsoft webservices 客户端(不是 WFC),那么您可以获取底层 HttpWebRequest 并在其上设置凭据。

我不知道如何在 WCF 上执行此操作。

我强烈建议您为此使用 Microsoft Web 服务客户端。 NTLM 是一种多方质询响应协议,在代码中实现它并不容易。

What client are you using for the webservice? IF you are using the microsoft webservices client (not WFC) then you can get the underlying HttpWebRequest and set the credentials on it.

I am not sure how to do this on WCF.

I strongly suggest that you use microsoft web service clients for this. NTLM is a multi-leg challenge response protocol, and it is not easy to implement it in your code.

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