如何在 iPhone 上执行 NTLM 质询

发布于 2024-07-14 08:53:36 字数 330 浏览 1 评论 0原文

我正在尝试在 iPhone 应用程序中访问一些 Web 服务。

如果我 GET 到 .asmx 页面,我将进行身份验证并按预期获取 WSDL。

但是,如果我 POST 到 .asmx 页面,设置 SOAPAction、Content-Type、Content-Length 和 HTTPBody,我就会不断收到 didReceiveAuthenticationChallenge 消息。

此外,我正在尝试使用集成 Windows 身份验证 (IWA) 发布到 IIS,这意味着我正在尝试协商 NTLM 质询。

I'm trying to access some web services in an iPhone application.

If I GET to the .asmx page, I authenticate and get the WSDL as expected.

However, if I POST to the .asmx page, setting the SOAPAction, Content-Type, Content-Length, and HTTPBody, I just keep getting didReceiveAuthenticationChallenge messages.

Additionally, I'm trying to POST to IIS using Integrated Windows Authentication (IWA), which means I'm trying to negotiate an NTLM challenge.

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

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

发布评论

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

评论(2

二手情话 2024-07-21 08:53:36

不幸的是我找到了答案。 NSURLConnection 无法进行 NTLM 身份验证。 这是一篇关于如何使用 CFNetwork 堆栈进行 NTLM 身份验证的文章。

通过 CFNetwork 堆栈进行 HTTP Post

找到了比做所有这些乏味的事情更好的事情:已经有人做过了!
ASIHTTPRequest

更新:有一个 iOS 4 的解决方法,允许再次进行 NTLM 身份验证

I unfortunately found my answer. NSURLConnection cannot do NTLM authentication. Here's a post about how to do NTLM authentication using the CFNetwork stack.

HTTP Post via the CFNetwork stack

Found something even better than doing all of that tediousness: Someone who has already done it!
ASIHTTPRequest

Update: There is a workaround for iOS 4 that allows for NTLM authentication again

星光不落少年眉 2024-07-21 08:53:36

在我看来,您的网络服务具有不同的读取(获取)和写入(发布)权限。 我认为这根本不是 iPhone 或 NSURLConnection 的问题。

Sounds to me like your web-service has different read (get) and write (post) permissions. I dont think this is an issue with the iPhone or NSURLConnection at all.

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