calabash: does p:import support file:

in calabash if I have a pipeline like

<p:pipeline name="pipeline"
            xmlns:p="http://www.w3.org/ns/xproc">

<p:import href="file:test/xproc/basic/declare-step/count1.xml"/>

<p:count1/>

</p:pipeline>

where the p:import brings in the count1.xml pipeline

<p:declare-step name="count1" type="count1"
            xmlns:p="http://www.w3.org/ns/xproc">

<p:input port="source"/>
<p:output port="result"/>

    <p:count/>

</p:declare-step>

calabash oddly throws err:XS0025;

'Pipeline failed: err:XS0025: null  It is a dynamic error if the
processor encounters an xpath-version.....'

I was expecting the count1 step to work, perhaps its because p:import
href does not support file: ?

cheers, Jim

Received on Tuesday, 18 November 2008 21:28:27 UTC