Skip to end of banner
Go to start of banner

ldapUserStruct

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Availability

This routine is available since katl-commons 3.0.

Syntax:

ldapUserStruct(ldapQuery[, ldapName])

Description:

Returns an array of JLdapUserStruct representing all users matched by the query.

Parameters:

Parameter name

Type

Required

Description

ldapQuery

string

yes

the query, must return exactly one result

ldapNamestringnoOptional, from version 4.0, you can specify which LDAP server must be searched. If missing, it's the default LDAP server

Returns:

JLdapUserStruct []

Each element in the array represents an user. The attributes field of the JLdapUserStruct is also keyed by the attribute name for easy access of attributes. Each attribute is a JLdapUserAttribute. The "value" field of the attribute is a string array. If the attribute only has one value, the array will contain only one element, but will still be an array and not a single string.

OpenDS Example:

JLdapUserStruct [] users = ldapUserStruct("objectClass=inetOrgPerson");
for(JLdapUserStruct u in users) {
    print(u.DN);
    for(JLdapUserAttribute attr in u.attributes) {
        print(attr.name + " = " + attr.value);
    }
    print("ID is : " + u.attributes["uid"].value);
}

 

Notes:

LDAP must be configured (see LDAP Configuration page).

Only Microsoft Active Directory is supported at this time, but it might work with others as well (tested with OpenDS). To provide support for other LDAP types, please contact us.

 

See Also:

 

  • No labels