JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Using LDAP with Oracle Java CAPS     Java CAPS Documentation
search filter icon
search icon

Document Information

Using LDAP with Java CAPS

LDAP Overview

Using an LDAP Server for Repository User Management

Configuring Oracle Virtual Directory for the Repository

To Configure LDAP Servers Connected to Oracle Virtual Directory

Configuring Oracle Internet Directory for the Repository

To Configure Oracle Internet Directory

Configuring Oracle Directory Server Enterprise Edition for the Repository

To Configure Oracle Directory Server Enterprise Edition

Configuring the Active Directory Service for the Repository

To Configure the Active Directory Service

Configuring the OpenLDAP Directory Server for the Repository

To Configure the OpenLDAP Directory Server

Configuring the Repository for LDAP Support

To Configure the Repository

Configuring the Repository for LDAP and SSL Support

Configuring SSL on the LDAP Server

Importing the LDAP Server's Certificate

Modifying the LDAP Server URL

Using an LDAP Server for Oracle Java CAPS JMS IQ Manager User Management

Configuring the LDAP Server

To Configure the LDAP server

Configuring the Oracle Java CAPS JMS IQ Manager

To Configure the Oracle Java CAPS JMS IQ Manager

Access Control LDAP Server Properties

Using an LDAP Server for Enterprise Manager User Management

Configuring Oracle Virtual Directory for Enterprise Manager

To Configure LDAP Servers Connected to Oracle Virtual Directory

Configuring Oracle Internet Directory for Enterprise Manager

To Configure Oracle Internet Directory

Configuring Oracle Directory Server Enterprise Edition for Enterprise Manager

To Configure the Oracle Directory Server Enterprise Edition

Configuring Microsoft Active Directory Service for Enterprise Manager

To Configure the Active Directory Service

Configuring the OpenLDAP Directory Server for Enterprise Manager

To Configure the OpenLDAP Directory Server

Configuring the Enterprise Manager Server

To Configure the Enterprise Manager Server

Configuring Enterprise Manager for LDAP and SSL Support

Configuring SSL on the LDAP Server

Importing the LDAP Server's Certificate

Modifying the LDAP Server URL

Specifying an Application Configuration Property Dynamically

Enabling the Application Server to Access the LDAP Server

To Enable the Application Server to Access the LDAP Server

Specifying an LDAP URL for a Property

To Specify an LDAP URL for a Property

Index

LDAP Overview

The Lightweight Directory Access Protocol (LDAP) is a standard that enables clients to query and update data in directory services.

An LDAP directory includes a series of entries. An entry is a collection of attributes, plus a Distinguished Name that uniquely identifies the entry.

In the following example, the first line specifies the DN. The succeeding lines specify the attributes.

dn: cn=all, ou=Roles, dc=company, dc=com
objectClass: top
objectClass: groupOfUniqueNames
cn: all
ou: Roles

The components of a DN are ordered hierarchically from most specific to least specific. Thus, the last component in the DN identifies the root entry of the directory.

Each attribute contains a type and one or more values. For example, the attribute ou: Roles has a type of ou (organizational unit) and a value of Roles. An object class is an attribute that specifies the required and optional attributes for an entry. You can find definitions of many object classes in RFC 2256.

The preceding example is represented in the LDAP Data Interchange Format (LDIF). The entry could also be represented graphically.

When searching an LDAP directory, you use a search filter to specify the search criteria. You can use an asterisk as a wildcard character. For example:

(cn=John S*)