
sec:external-security-set-saml-destination( $external-security-name as xs:string, $saml-destination as xs:string? ) as empty-sequence()
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. | 
http://marklogic.com/xdmp/privileges/external-security-set-saml-idp-certificate-authorityThis 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-destination(
   "samlConfig",
   "https://server11.marklogic.com:9031/idp/SSO.saml3"
) 
    
  
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.