此内容没有您所选择的语言版本。
Chapter 197. LDAP Component
Available as of Camel version 1.5
The ldap component allows you to perform searches in LDAP servers using filters as the message payload.
This component uses standard JNDI (javax.naming
package) to access the server.
Maven users will need to add the following dependency to their pom.xml
for this component:
197.1. URI format 复制链接链接已复制到粘贴板!
ldap:ldapServerBean[?options]
ldap:ldapServerBean[?options]
The ldapServerBean portion of the URI refers to a DirContext bean in the registry. The LDAP component only supports producer endpoints, which means that an ldap
URI cannot appear in the from
at the start of a route.
You can append query options to the URI in the following format, ?option=value&option=value&…
197.2. Options 复制链接链接已复制到粘贴板!
The LDAP component has no options.
The LDAP endpoint is configured using URI syntax:
ldap:dirContextName
ldap:dirContextName
with the following path and query parameters:
197.2.1. Path Parameters (1 parameters): 复制链接链接已复制到粘贴板!
Name | Description | Default | Type |
---|---|---|---|
dirContextName | Required Name of either a javax.naming.directory.DirContext, or java.util.Hashtable, or Map bean to lookup in the registry. If the bean is either a Hashtable or Map then a new javax.naming.directory.DirContext instance is created for each use. If the bean is a javax.naming.directory.DirContext then the bean is used as given. The latter may not be possible in all situations where the javax.naming.directory.DirContext must not be shared, and in those situations it can be better to use java.util.Hashtable or Map instead. | String |
197.2.2. Query Parameters (5 parameters): 复制链接链接已复制到粘贴板!
Name | Description | Default | Type |
---|---|---|---|
base (producer) | The base DN for searches. | ou=system | String |
pageSize (producer) | When specified the ldap module uses paging to retrieve all results (most LDAP Servers throw an exception when trying to retrieve more than 1000 entries in one query). To be able to use this a LdapContext (subclass of DirContext) has to be passed in as ldapServerBean (otherwise an exception is thrown) | Integer | |
returnedAttributes (producer) | Comma-separated list of attributes that should be set in each entry of the result | String | |
scope (producer) | Specifies how deeply to search the tree of entries, starting at the base DN. | subtree | String |
synchronous (advanced) | Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). | false | boolean |
197.3. Result 复制链接链接已复制到粘贴板!
The result is returned in the Out body as a ArrayList<javax.naming.directory.SearchResult>
object.
197.4. DirContext 复制链接链接已复制到粘贴板!
The URI, ldap:ldapserver
, references a Spring bean with the ID, ldapserver
. The ldapserver
bean may be defined as follows:
The preceding example declares a regular Sun based LDAP DirContext
that connects anonymously to a locally hosted LDAP server.
DirContext
objects are not required to support concurrency by contract. It is therefore important that the directory context is declared with the setting, scope="prototype"
, in the bean
definition or that the context supports concurrency. In the Spring framework, prototype
scoped objects are instantiated each time they are looked up.
197.5. Samples 复制链接链接已复制到粘贴板!
Following on from the Spring configuration above, the code sample below sends an LDAP request to filter search a group for a member. The Common Name is then extracted from the response.
If no specific filter is required - for example, you just need to look up a single entry - specify a wildcard filter expression. For example, if the LDAP entry has a Common Name, use a filter expression like:
(cn=*)
(cn=*)
197.5.1. Binding using credentials 复制链接链接已复制到粘贴板!
A Camel end user donated this sample code he used to bind to the ldap server using credentials.
197.6. Configuring SSL 复制链接链接已复制到粘贴板!
All required is to create a custom socket factory and reference it in the InitialDirContext bean - see below sample.
SSL Configuration
Custom Socket Factory
197.7. See Also 复制链接链接已复制到粘贴板!
- Configuring Camel
- Component
- Endpoint
- Getting Started