How to call with .NET Webservice credentials from Android?

I'm having trouble using .NET Web Services with the Android platform because the web service I want to use is blocked for Windows Authentication (NTLM). How can I use NTLM authentication with an HttpClient request in an Android application?

Hi

+3
source share
2 answers

I have the same problem and I read a lot about it. But I have an “Answer”, how can you solve it.

The problem is the HttpClient class, because it does not support NTLM entry, but now the HttpClient api (4.2) can support it.

Apache, HttpClient 4.2 . HttpClient, .

:

, .

+1

Source: https://habr.com/ru/post/1760506/


All Articles