如何使用凭据从 Android 调用 .NET Web 服务?
我在 Android 平台上使用 .NET Web 服务时遇到问题,因为我想要使用的 Web 服务被锁定在 Windows (NTLM) 身份验证后面。 我如何在 Android 应用程序中使用 NTLM 身份验证和 HttpClient 请求?
问候
I´m having trouble using .NET Web Services with the Android Platform because the web service i want to consume is locked behind Windows (NTLM) authentication.
How can i to use NTLM authentication with an HttpClient request in a android application?
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我有同样的问题,并且我读了很多相关内容。但我有一个关于如何解决它的“答案”。
问题是 HttpClient 类,因为它不支持 NTLM 连接,但是,现在 HttpClient api (4.2) 可以支持它。
我在 Apache 页面上读到了有关它的信息,因此您必须下载 HttpClient 4.2 版本并将其添加到您的项目中。使用该 HttpClient 类,然后就可以工作了。
您可以在这里下载:
我现在发布它是因为有些人可以在这里找到解决方案。
I have the same problem and i read a lot about it. But i have a "Answer" of how can you solve it.
The problem is HttpClient class because it doesnt support NTLM conecction, but, now the HttpClient api (4.2) can support it.
I read about it on Apache page, so you have to download the HttpClient 4.2 version and add it to your proyect. Use that HttpClient class and then shold works.
You can download here:
I post it now because some people could found the solution here.
http://code.google.com/p/android/issues/详细信息?id=4962
我认为它不受支持,并且自 2009 年 11 月开放以来似乎也没有任何优先级。
http://code.google.com/p/android/issues/detail?id=4962
I don't think it's supported and doesn't seem to have any priority either since it was opened back in Nov 2009.