
flexrep:configuration-target-get-http-options( $cfg as element(flexrep:configuration), $target-id as xs:unsignedLong ) as element(flexrep:http-options)
This function returns the HTTP options configured for the specified replication target.
| Parameters | |
|---|---|
| cfg | The replication configuration. |
| target-id | The ID of the replication target. |
xquery version "1.0-ml";
import module namespace flexrep = "http://marklogic.com/xdmp/flexible-replication"
at "/MarkLogic/flexrep.xqy";
let $domain := flexrep:configuration-domain-ids( )
(: 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( "Default Master" )//dom:domain-id)',
(),
<options xmlns="xdmp:eval">
<database>{xdmp:database("Triggers")}</database>
</options>)
let $cfg := flexrep:configuration-get($domain, fn:true())
let $target_id := flexrep:configuration-target-get-id($cfg, "Replica")
return
flexrep:configuration-target-get-http-options($cfg, $target_id)
(: Returns the HTTP options for the "Replica" target. :)