Loading TOC...

sec.externalSecuritySetSamlDestination

sec.externalSecuritySetSamlDestination(
   external-security-name as String,
   saml-destination as String?
) as null

Summary

This function updates the saml destination in the external security configuration.

Parameters
external-security-name The name of an external-security configuration.
saml-destination The URL for the Identity Provider to accept the authentication request.

Required Privileges

http://marklogic.com/xdmp/privileges/external-security-set-saml-destination

Usage Notes

This function must be executed against the security database.

Example


const sec = require('/MarkLogic/security');

sec.externalSecuritySetSamlDestination(
   "samlConfig",
   "https://server11.marklogic.com:9031/idp/SSO.saml3"
)

   

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