
sec:external-security-set-saml-issuer( $external-security-name as xs:string, $saml-issuer as xs:string? ) as empty-sequence()
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.
xquery version "1.0-ml";
import module namespace sec = "http://marklogic.com/xdmp/security"
at "/MarkLogic/security.xqy";
sec:external-security-set-saml-issuer(
"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.