【发布时间】:2017-05-26 11:54:58
【问题描述】:
我有以下 xml。
<prop:properties xmlns:prop="http://marklogic.com/xdmp/property">
<cpf:processing-status xmlns:cpf="http://marklogic.com/cpf">done</cpf:processing-status>
<cpf:property-hash xmlns:cpf="http://marklogic.com/cpf">6b9dab35ed148cd08bba59503892a0fd</cpf:property-hash>
<cpf:last-updated xmlns:cpf="http://marklogic.com/cpf">2017-05-23T17:56:54.5734822+05:30</cpf:last-updated>
<cpf:state xmlns:cpf="http://marklogic.com/cpf">http://marklogic.com/states/converted</cpf:state>
<lnk:link from="/mycompany/mlabcNew_doc.xhtml" to="/mycompany/mlabcNew.doc" rel="source" rev="conversion" strength="strong" xmlns:lnk="http://marklogic.com/cpf/links"/>
<cpf:self xmlns:cpf="http://marklogic.com/cpf">/mycompany/mlabcNew.doc</cpf:self>
</prop:properties>
我想使用 java 客户端 API 获取属性 'to' 的值(即 /mycompany/mlabcNew.doc)。
我尝试了以下结构化查询来获取结果,但没有得到结果
StructuredQueryBuilder qb = queryMgr.newStructuredQueryBuilder();
StructuredQueryDefinition query = qb.properties(
qb.word(qb.elementAttribute(
qb.element(new QName("http://marklogic.com/cpf/links", "link")),
qb.attribute(new QName("http://marklogic.com/cpf/links", "to"))),
"/mycompany/mlabcNew_doc.xhtml"));
我没有找到获得这个的方法。请帮忙
【问题讨论】:
标签: marklogic marklogic-8