Loading TOC...

flexrep:configuration-target-set-http-options

flexrep:configuration-target-set-http-options(
   $cfg as element(flexrep:configuration),
   $target-id as xs:unsignedLong,
   $val as element(flexrep:http-options)
) as element(flexrep:configuration)

Summary

This function sets the HTTP options on the specified replication target.

Parameters
cfg The replication configuration.
target-id The ID of the replication target.
val The HTTP options in XML format.

Example

  (: Execute against the Master database. :)
  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( "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") 

  let $http-options := 
    <flexrep:http-options 
     xmlns:flexrep="http://marklogic.com/xdmp/flexible-replication">
      <http:authentication xmlns:http="xdmp:http">
        <http:username>replicator</http:username>
        <http:password>admin</http:password>
      </http:authentication>
      <http:client-cert xmlns:http="xdmp:http"/>
      <http:client-key xmlns:http="xdmp:http"/>
      <http:pass-phrase xmlns:http="xdmp:http"/>
    </flexrep:http-options>

  let $cfg := 
      flexrep:configuration-target-set-http-options($cfg, $target-id, $http-options)

  return flexrep:configuration-insert($cfg) 

  (: Resets the username and password used to access the Replica App Server. :)
     

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.