我有一个带有两个http-request
步骤的XProc管道。第一个http-request
检索包含一系列RDF / XML文档的XML文档。 xquery
步骤仅提取RDF / XML,然后我想将其发布到第二个http-request
中的SPARQL端点。在最后一步中,我想再次从SPARQL端点检索数据,以便我可以进行进一步处理。
我已尝试按照similar question的解决方案,但我收到错误(在XML Calabash中)说明,Expression could not be evaluated: c:request/c:body: Prefix c has not been declared.
这是当前管道,通过XForms提交到Calabash Piperack服务:
<p:declare-step name="main" version="1.0"
xmlns:p="http://www.w3.org/ns/xproc"
xmlns:c="http://www.w3.org/ns/xproc-step"
xmlns:cx="http://xmlcalabash.com/ns/extensions">
<p:input port="source"/>
<p:output port="result"/>
<p:import href="http://localhost:8984/static/rdf.xpl"/>
<p:http-request>
<p:input port="source">
<p:inline>
<c:request method="GET"
href="http://localhost:9070/all?query=dc.title=test+search&startRecord=1&maximumRecords=50&recordSchema=bibframe"/>
</p:inline>
</p:input>
</p:http-request>
<p:xquery name="xq">
<p:input port="query">
<p:inline>
<c:query>
declare namespace rdf =
"http://www.w3.org/1999/02/22-rdf-syntax-ns#";
element rdf:RDF {
let $rdf := //rdf:RDF
for $r in $rdf/*
return $r
} </c:query>
</p:inline>
</p:input>
<p:input port="parameters">
<p:empty/>
</p:input>
</p:xquery>
<p:insert match="c:request/c:body" position="first-child">
<p:input port="source">
<p:inline>
<c:request method="POST"
href="http://localhost:3030/bibframe/data?graph=cwb:tmp">
<c:body content-type="application/rdf+xml"/>
</c:request>
</p:inline>
</p:input>
<p:input port="insertion">
<p:pipe step="xq" port="result"/>
</p:input>
</p:insert>
<p:http-request/>
<p:sink/>
<cx:rdf-load
href="http://localhost:3030/bibframe/get?graph=cwb:tmp"
language="turtle">
<p:input port="source">
<p:empty/>
</p:input>
</cx:rdf-load>
</p:declare-step>
如果我将@match
步骤的p:insert
属性中的XPath更改为/*[local-name() = 'request']/*[local-name() = 'body']
,则前缀错误消失,帖子提交正常。但有没有办法用前缀?
最后,rdf-load
步骤在其他步骤完成之前执行,但我需要它始终执行最后一步。我怎么能这样做,因为rdf-load
步骤没有从其他步骤直接输入?