
sec.externalSecuritySetSamlIssuer( external-security-name as String, saml-issuer as String? ) as null
This function updates the saml issuer in the external security configuration.
| Parameters | |
|---|---|
| external-security-name | The name of an external-security configuration. |
| saml-issuer | The identity of the Service Provider (MarkLogic Server). |
http://marklogic.com/xdmp/privileges/external-security-set-saml-issuerThis function must be executed against the security database.
const sec = require('/MarkLogic/security');
sec.externalSecuritySetSamlIssuer(
"samlConfig",
"https://service-provider.marklogic.com/sp"
)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.