我正在使用一个调度任务运行下面的xqy代码,并且在这个xqy代码中,我在put调用中使用method="digest“username = admin password = admin手动传递身份验证节点的值,有没有什么方法可以让我在运行时使用
示例资源用户名的加密令牌,并在运行时示例服务器的值用户名和密码,并将其传递给http-put函数以在8000端口访问rest服务扩展(/v1/ password
xquery version "1.0-ml";
declare namespace hst = 'http://marklogic.com/xdmp/status/host';
declare namespace c = 'http://example.com/abc';
declare variable $Collection := 'collection';
let $query :=
cts:and-query((
cts:collection-query($Collection),
cts:element-range-query(xs:QName('c:element'), '<=', fn:current-dateTime())
))
let $uris := cts:uris('',(), $query)
let $total-uri := count($uris)
return
if ($total-uri) then
let $PORT := '8000'
let $database := xdmp:database()
let $host-list := xdmp:hosts()
let $hosts :=
for $hosts-online in $host-list
where xdmp:host-status($hosts-online)/hst:hosts/hst:host[.//hst:online/fn:string() = 'true']
return $hosts-online
let $cluster-size := fn:count($hosts)
return
for $host at $index in $hosts
let $page-size := fn:ceiling($total-uri div $cluster-size)
let $start-index := ($index - 1) * $page-size + 1
let $end-index :=
if ($cluster-size eq $index) then
$total-uri
else
($index - 1) * $page-size +$page-size
let $urisforHost := string-join($uris[$start-index to $end-index],',')
let $url := fn:concat('http://',xdmp:host-name($host),':',$PORT,'/v1/resources/example?rs:uris=',$urisforHost,'&rs:db=',$database)
return
xdmp:spawn-function(function()
{xdmp:http-put($url,
<options xmlns="xdmp:http">
<authentication method="digest">
<username>admin</username>
<password>admin</password>
</authentication>
</options>
)
}
)发布于 2020-10-16 14:07:05
这可以通过creating a credential使用安全凭据来实现
然后在HTTP请求中引用凭据id,例如
xdmp:http-get("http://ml-node-1:8002/manage",
<options xmlns="xdmp:http">
<credential-id>{xdmp:credential-id("my-credential-name)}</credential-id>
</options>)https://stackoverflow.com/questions/64374237
复制相似问题