sec.credentialSetCertificate( credential-name as String, certificate as String?, private-key as String? ) as null
This function updates the certificate for the credential. The private key is set at the same time because the two must be matched and cannot independently change.
Parameters | |
---|---|
credential-name | The name of the credential. |
certificate | The new certificate, if any. |
private-key | The private key for $certificate. |
http://marklogic.com/xdmp/privileges/credential-set-certificate
This 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:credential-set-certificate("my-secure-credential", "newcert", "newkey") (: needs real cert and key :)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.