2

我有一个包含两个http-request步骤的 XProc 管道。第一个http-request检索包含一系列 RDF/XML 文档的 XML 文档。一个xquery步骤仅提取 RDF/XML,然后我想将其发布到第二个中的 SPARQL 端点http-request。在最后一步中,我想再次从 SPARQL 端点检索数据,以便进行进一步处理。

我尝试按照类似问题的解决方案进行操作,但我收到一个错误(在 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&amp;startRecord=1&amp;maximumRecords=50&amp;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>

如果我将step@match属性中的 XPath 更改为,则前缀错误消失并且 post 提交正常工作。但是有没有办法用前缀做到这一点?p:insert/*[local-name() = 'request']/*[local-name() = 'body']

最后,该rdf-load步骤在其他步骤完成之前执行,但我需要它始终最后执行。rdf-load鉴于该步骤没有从其他步骤直接输入,我该怎么做?

4

0 回答 0