LDAP and Android Authentication

I am trying to authenticate with tomcat server via LDAP. Then, after authentication, send a basic GET request to return the data (XML) and display it to the user. How do I authenticate with the server and then complete this request? Are there any good good guides or libraries for this? I am new to this protocol.

+4
source share
1 answer

You can find an example of client authentication in the HttpClient Examples .

+2
source

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


All Articles