Loading TOC...

sec.externalSecuritySetAuthentication

sec.externalSecuritySetAuthentication(
   external-security-name as String,
   authentication as String
) as null

Summary

This function sets the authentication protocol for the named external authorization configuration object.

Parameters
external-security-name Name of the external authorization configuration object.
authentication The authentication protocol. This can be either ldap or kerberos.

Example


// Execute this against the security database.
declareUpdate();
const sec = require('/MarkLogic/security');

sec.externalSecuritySetAuthentication('ldapconfig', 'kerberos');

// Sets the authentication protocol in the external authorization configuration object,
// named "ldapconfig", to 'kerberos'.
   

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