hi,
 
How do i use associate input or outputs to a pipeline processor ?
 
I got the following error:
 
        Pipeline output 'data' is not connected to a processor output in pipeline
 
 
 
I used the following .xpl and the above error message happened.  Thanks.  Am confused as to how they relate to each other with the "name", "ref", "id" attributes of input and output tags.
 
 
<p:processor uri="oxf/processor/sql">    
     <p:input name="config">
         <sql:config xmlns:sql="http://orbeon.org/oxf/xml/sql">
             <friends>
                 <sql:connection>
                     <sql:datasource>db</sql:datasource>
                     <sql:execute>
                         <sql:query>
                             select * from friends
                         </sql:query>
                         <sql:results>
                             <sql:row-results>
                                 <row>
                                     <sql:get-columns format="xml"/>
                                 </row>
                             </sql:row-results>
                         </sql:results>
                     </sql:execute>
                 </sql:connection>
             </friends>
         </sql:config>
     </p:input>
  <p:output name="data" id="friends" debug="my-sql-result"/>    
</p:processor>   
 
Regards,
Tony
_______________________________________________
oxf-users mailing list
[EMAIL PROTECTED]
http://mail.orbeon.com/mailman/listinfo/oxf-users

Reply via email to