Search This Blog
Archives
- April 2014 (1)
- July 2013 (3)
- June 2013 (1)
- May 2013 (2)
- January 2013 (1)
- December 2012 (3)
- November 2012 (1)
- June 2012 (5)
- May 2012 (2)
- April 2012 (1)
- March 2012 (2)
- February 2012 (1)
- December 2011 (4)
- November 2011 (5)
- October 2011 (6)
- September 2011 (2)
- August 2011 (3)
- July 2011 (5)
- June 2011 (2)
- May 2011 (1)
- April 2011 (3)
- January 2011 (1)
- December 2010 (2)
- November 2010 (1)
- October 2010 (1)
- May 2010 (2)
- April 2010 (1)
- March 2010 (1)
- February 2010 (1)
- October 2009 (2)
- September 2009 (2)
- November 2008 (1)
LDAP
LDAP API
Pages
Categories
-
Recent Posts
Monthly Archives: October 2011
LDAP: Programming Practices
The summary follows below. See LDAP: Programming Practices for the full article. Summary use LDAPv3 use the UnboundID LDAP SDK. See the comparison matrix. do not use JNDI for new code avoid Spring LDAP for new code do not use … Continue reading
Posted in computing, Java, LDAP, UnboundID LDAP SDK
Tagged best practices, java, java LDAP examples, JNDI, LDAP, LDAP best practices, LDAP controls, perl, rfc4422, rfc4511, rfc4527, root-dse, SASL, size limit, spring LDAP, SSL, subschema, time limit, TLS, unsolicited notification
12 Comments
LDAP: Retrieve all attributes of an objectClass
Use the following syntax to retrieve all attributes required or allowed by an objectClass definition with the following syntax for requested attributes: @objectClassName. The example below provide examples of how to search for entries where: no attributes are retrieved all … Continue reading
LDAP: Change Notification Using Persistent Search
The UnboundID Directory Server supports the LDAP change notification mechanism called “persistent search”. A persistent search is a search request that does not complete, but reports changes as they occur based on the parameters specified when the search request is … Continue reading
LDAP: Last Logon Time and Last Logon IP Address
Using password policies, the UnboundID Directory Server can record the entry’s last logon time and last logon IP address from which a connection authenticated. The password policy has ‘properties’ named: last-login-time-attribute last-login-time-format last-login-ip-address-attribute which specify the name of the attribute … Continue reading
Posted in computing, LDAP
Tagged auditing, last logon ip, last logon ip address, last logon time, LDAP, security, unboundid
Leave a comment
LDAP: In-Memory Directory Server Using UnboundID LDAP SDK.
The UnboundID LDAP SDK provides clients with the ability to create an in-memory directory server. This type of server allows quick testing of LDAP clients – there is no need to install a server locally. The following example shows code … Continue reading
Posted in Java, LDAP, UnboundID LDAP SDK
Tagged java, LDAP, LDAP API, ldap-sample-code, SDK, unboundid
Leave a comment