我们正在尝试使用摘要身份验证从 MarkLogic 连接到 Apache 服务器。但是,我们在尝试连接时收到 401 未经授权的错误。下面是我们使用的 MarkLogic API:
xdmp:http-get("htp://localhost:port/a/b/c",
<options xmlns="xdmp:http">
<authentication method="digest">
<username>abc</username>
<password>abc123</password>
</authentication>
</options>)
我们得到的回应如下。你能告诉我这里可能是什么问题吗?
<response>
<code>401</code>
<message>Unauthorized</message>
<headers>
<server>Apache-Coyote/1.1</server>
<www-authenticate>Digest realm="ABCRealm", qop="auth", nonce="MTM3ODg4ODk3MjY5NTplMGFiYWI1YmZiNmM4YzU0OWJmMWM2ZWU5ZTYwODcxOQ=="</www-authenticate>
<content-type>text/html;charset=utf-8</content-type>
<content-length>1041</content-length>
<date>Wed, 11 Sep 2013 08:37:52 IST</date>
<cache-control>proxy-revalidate</cache-control>
<connection>close</connection>
</headers>
</response>
HTTP 状态 401 - Nonce 应该已经产生了两个令牌,但是
问候,维杰