Loading TOC...

sec:external-security-set-ldap-bind-method

sec:external-security-set-ldap-bind-method(
   $external-security-name as xs:string,
   $ldap-bind-method as xs:string
) as empty-sequence()

Summary

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 in the Security Guide.

Parameters
external-security-name Name of the external authorization configuration object.
ldap-bind-method Bind method. Either MD5 or simple. When using LDAP with simple bind, the password is not encrypted, so it is recommended that you use secure ldaps (LDAP with SSL).

Required Privileges

http://marklogic.com/xdmp/privileges/external-security-set-ldap-bind-method

Usage Notes

This function must be executed against the security database.

Example


(: execute this against the security database :)

xquery version "1.0-ml"; 
 
import module namespace sec = "http://marklogic.com/xdmp/security" 
      at "/MarkLogic/security.xqy";
 
sec:external-security-set-ldap-bind-method("ldapconfig", "simple")

(: Sets the LDAP bind method to "simple" on the external security object,
   named "ldapconfig". :) 
 
    

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.