Hi,

I am somewhat confused about pipeline outputs; the documentation leads me to believe that I can create a pipeline output with any name I want so:

<p:config>
  <p:param type="output" name="outcome"/>

and then to connect to this I just use a ref:

  <p:processor name="oxf:identity">
    <p:input name="data" href="#somedocument"/>
    <p:output name="data" ref="outcome"/>
  </p:processor>

but when I do this, I get no output. Instead it seems that I have to do:

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

  <p:processor name="oxf:identity">
    <p:input name="data" href="#somedocument"/>
    <p:output name="data" ref="data"/>
  </p:processor>

so the name of the output type p:param must match the name of p:output which is referring to it (via ref)?

        Cheers,

        Matthew



-------------------------------------------------------
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