
sec.externalSecuritySetLdapBindMethod( external-security-name as String, ldap-bind-method as String ) as null
This function sets the bind method on the named external security object.
For more information on the external security bind method, see Creating an External Authentication Configuration Object.
http://marklogic.com/xdmp/privileges/external-security-set-ldap-bind-methodThis function must be executed against the security database.
// Execute this against the security database.
declareUpdate();
const sec = require('/MarkLogic/security');
sec.externalSecuritySetLdapBindMethod('ldapconfig', 'simple');
// Sets the LDAP bind method to "simple" on the external security object,
// named "ldapconfig".