Creating LDAP Entry
Use create activity to create entry or entries on LDAP Server. A LDAP Entry consist of set of attributes which defines the Entry.
Using the create activity:
-
Right-click Orchestration in the Project pane and click New Orchestration to create or open an orchestration. The orchestration pane is displayed.
-
Select the Activities tab and expand the LDAP folder
-
Drag Create Entry activity from the LDAP folder onto the orchestration. The graphical representation of the orchestration, including the checklist is displayed
-
Drag Create Entry activity from the LDAP folder onto the orchestration. The graphical representation of the orchestration, including the checklist is displayed
-
Click on Pick Endpoint to select a LDAP endpoint to work with
-
Click Configure from the Checklist. The Configure pane is displayed. Complete the following steps to configure Create Entry activity
- Click Browse button to select an Base Dn from the Browse DIT pane. The Browse LDAP Entry panel displays all the entries from the selected LDAP server. Note : if you have configured the Base-Dn property in the endpoint panel then Browse LDAP Entry displays children of Base-Dn alone or else it displays all the entries from the root of the LDAP directory
- Click Browse button to select an Object class(es) from the Browse LDAP Object Class pane. The Browse LDAP Object Class panel displays all the Object Classes on the selected LDAP Server. LDAP object class(es) defines the attributes of an Entry. An Entry object can have superset of attributes from 2 or more object classes. Select all the object classes which will collectively represent all attributes of the Entry you are going to create
-
Specifying the map inputs for create activity
Click Map Input from the Checklist pane.The input parameters for the specific LDAP activity are displayed under the To Activity pane.
Note: Whole request object is an array type which allow users to create multiple entries using same request. and use the additionalAttributes section and provide the Attribute names, its type and attribute values
Parameter Name | Descrtiption |
---|---|
baseDn |
Point under which new entry to be created |
RDN |
Relative Distinguished Names(RDN). RDN of an object is the part of the name that is an attribute of the object itself (the part of the object name that identifies this object as unique from its siblings at its current level in the naming hierarchy) |
objectClasses |
To specify additional object classes and its attribute(s) which are not part of the map inputs structure during runtime, use ObjectClasses element to provide the Object class name(s). The element objectClasses is an array type so that you can specify multiple values |
entryAttributes |
LDAP Entry Attributes type provides structured content type to create an Entry in the LDAP server. The Entry Attributes element type is created from the set of attributes derived using Object Class(es) specified in the configure panel |
additionalAttributes |
Additional Attributes type can be used when user wants to specify additional set attributes and their values outside the selected object classes during runtime. The element additionalAttributes is an array type so that user can specify multiple additional attributes. The element additionalAttributes is a complex type element through which user can specify attribute name, its type and values (values itself an array type allowing user to specify set of values for the given attribute) |
Specifying the map outputs create activity
Parameter Name | Description |
---|---|
baseDn |
Return Base Dn if successful |
RDN |
Return RDN if successful |
resultCode |
LDAP Result code |
resultMessage |
LDAP Result Message |
Note : We can create multiple Entries using create entry activity