- From: James Garriss <james@garriss.org>
- Date: Fri, 12 Sep 2008 12:22:50 -0400
- To: xproc-dev@w3.org
Received on Friday, 12 September 2008 17:20:44 UTC
I'm trying to write some simple pipelines with XProc. I seem to get
this error frequently for various steps (swap out <p:delete> for
whatever step I'm using):
Pipeline failed: org.xproc.XProcException: A p:delete step must
contain only a signature.
What is this error trying to tell me? I suspect it's telling me I
have the wrong number of inputs and outputs, but I don't quite get
what I'm missing (or adding).
For grins, here's my pipeline:
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" name="main">
<p:input port="source" primary="true">
<p:document href="BookStore.xml"/>
</p:input>
<p:output port="result"/>
<p:pipeline>
<p:delete>
<p:option name="BookStore/Book/Title" required="'false'"/>
</p:delete>
</p:pipeline>
</p:declare-step>
TIA,
James Garriss
http://garriss.blogspot.com
Received on Friday, 12 September 2008 17:20:44 UTC