Hi,

If I have a pipeline starting with something like

  <p:param type="output" name="data"/>

then I use a processor that produces this document like in

  <p:output name="data" ref="data"/>

But what if I want to use this output document of the pipeline also
as input for an own processor in the same pipeline?  Now I use:

  <!-- processor producing data -->
  ...
  <p:output name="data" id="data0"/>
  ...

  <!-- processor using that data too -->
  ...
  <p:input name="data" href="#data0"/>
  ...

  <!-- binding data to the pipeline output -->
  <p:processor name="oxf:identity">
    <p:input name="data" href="#data0"/>
    <p:output name="data" ref="data"/>
  </p:processor>
  
Is there a simpler way to do this?

Thanks,

--
--    Jos Vos <[EMAIL PROTECTED]>
--    X/OS Experts in Open Systems BV   |   Phone: +31 20 6938364
--    Amsterdam, The Netherlands        |     Fax: +31 20 6948204


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
orbeon-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/orbeon-user

Reply via email to