エラーが発生します:
{...get-request-parameter('query..} 内の ... での XPath 構文エラー: { http://orbeon.org/oxf/xml/xforms }get-
という名前の一致する 1 つの引数の関数が見つかりませんrequest-parameter(). 注: 外部関数呼び出しは無効になっています
次のコマンドでパイプラインを実行しようとすると:
<p:processor name="oxf:xslt">
<p:input name="config">
<xsl:stylesheet version="2.0">
<xsl:template match="/">
<TargetURL>
<xsl:variable name="location" select="/Configuration/XMLDB/Location/text()"/>
<xsl:variable name="name" select="/Configuration/XMLDB/Name/text()"/>
<xsl:variable name="query" select="xxforms:get-request-parameter('query')"/>
<xsl:value-of select="fn:concat($location,'/',$name,'?',$query)"/>
</TargetURL>
</xsl:template>
</xsl:stylesheet>
</p:input>
<p:input name="data" href="#configuration"/>
<p:output name="data" id="Target"/>
</p:processor>
XPL は、HTTP 要求パラメーターを取得するための正しい場所ではありませんか (代わりに page-flow.xml で行う必要がありますか?)