You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not able to import javax classes like javax.naming, javax.security.* in Android app which i'm trying to build using ldap SDK.
I've imported unboundid-ldapsdk.jar but it doesn't have javax classes.
The text was updated successfully, but these errors were encountered:
The javax.naming package is part of JNDI, but the UnboundID LDAP SDK for Java is a completely independent API for interacting with LDAP directory servers. It does not use JNDI for its communication, nor does it attempt to replicate its API (which is pretty sub-optimal for LDAP, as its attempts to allow interacting with several unrelated services make it not great for any of them, and especially confusing for LDAP). The UnboundID LDAP SDK provides a more intuitive, more powerful, and much more feature-rich API that is specifically designed for accessing LDAP directory services.
See the Getting Started Guide and Javadoc documentation for more information on using the UnboundID LDAP SDK. You can also look at the source code for a number of example tools written in the LDAP SDK to see how to use it for communicating with LDAP servers, reading and writing LDIF, and performing other LDAP-related tasks.
Not able to import javax classes like javax.naming, javax.security.* in Android app which i'm trying to build using ldap SDK.
I've imported unboundid-ldapsdk.jar but it doesn't have javax classes.
The text was updated successfully, but these errors were encountered: