如何在 iPhone 上执行 NTLM 质询
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不幸的是我找到了答案。 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
在我看来,您的网络服务具有不同的读取(获取)和写入(发布)权限。 我认为这根本不是 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.