
pki:template-get-description( $template as element(pki:template) ) as xs:string
This function returns the description of the specified certificate template.
| Parameters | |
|---|---|
| template | The certificate template from which to get the description. |
(: execute this against the security database :)
xquery version "1.0-ml";
import module namespace pki = "http://marklogic.com/xdmp/pki"
at "/MarkLogic/pki.xqy";
for $tid in pki:get-template-ids()
return pki:template-get-description(pki:get-template($tid))
(: Returns the descriptions of the certificate templates. :)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.