flexrep:configuration-get-domain-name

flexrep:configuration-get-domain-name(
   $cfg as element(flexrep:configuration)
) as xs:string

Summary

This function returns the domain name associated with the specified replication configuration.

Parameters
cfg The replication configuration.

Example

  xquery version "1.0-ml"; 

  import module namespace flexrep = "http://marklogic.com/xdmp/flexible-replication" 
      at "/MarkLogic/flexrep.xqy";

  (: Obtain the domain ID from the database used by the Master to enable CPF. :)
  let $domain:= xdmp:eval(
        'xquery version "1.0-ml";
         import module namespace dom = "http://marklogic.com/cpf/domains" 
            at "/MarkLogic/cpf/domains.xqy";
         fn:data(dom:get( "Replicated Content" )//dom:domain-id)',
         (),
         <options xmlns="xdmp:eval">
            <database>{xdmp:database("MyTriggers")}</database>
         </options>)

  let $cfg := flexrep:configuration-get($domain, fn:true())

  return flexrep:configuration-get-domain-name($cfg)

  (: Returns the domain name for the specified replication configuration. :)
     
Powered by MarkLogic Server | Terms of Use | Privacy Policy