listUsers
This function returns a list of LDAP users.
Signature:
ldap:listUsers('directoryName',filter')
Arguments:
-
directoryName
: The directory name specified in thedirectories.xml
file. For information about thedirectories.xml
file, see authenticate. -
filter
: The filter expression to use for the search; this value cannot benull
.
Returns:
An XML element that contains a list of users.For this XPath function, all properties must be specified in the directories.xml
file.
Example:
ldap:listUsers('people','ou=people');
The following provides an example of the output:
<users xmlns="http://schemas.oracle.com/bpel/ldap"> <user dn="uid=weblogic"> <uid>weblogic</uid> <userpassword> Unknown macro: {ssha} bHDVJRfWVt/Uwlzb4TKU+QTOLB4FLySO</userpassword> <objectclass>inetOrgPerson</objectclass> <objectclass>organizationalPerson</objectclass> <objectclass>person</objectclass> <objectclass>top</objectclass> <objectclass>wlsUser</objectclass> <description>This user is the default administrator.</description> <wlsMemberOf>cn=Administrators,ou=groups,ou=myrealm,dc=soainfra</wlsMember Of> <orclguid>8AC1B6206FDD11DEBF9A7F3D47003274</orclguid> <sn>weblogic</sn> <cn>weblogic</cn> </user> </users>