You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by "Rano, Didier" <Di...@fr.michelin.com> on 2002/12/12 17:49:26 UTC

Pipeline problem

I have a problem with a pipeline. If I test by block, all is ok:

<map:match pattern="hub/ldap/*">
  <map:generate src="hub/ldap/{1}.xml"/>
  <map:transform type="ldap"/>
  <map:transform src="hub/LDAP2Group.xslt" type="xslt"/>
  <map:serialize/> 
</map:match>   
   
The output of the previous test is given to the next:
     
 <map:match pattern="hub/annuaire/*">
  <map:generate src="hub/annuaire/{1}.xml"/>
  <map:transform type="annuaire">
   <map:parameter name="use-connection" value="annuaire_datasource"/>  
  </map:transform>
  <map:serialize/> 
 </map:match>   

annuaire is my own transformer.

And, now when I test the complete pipeline, I have errors:

<map:match pattern="hub/integration/*">
    <map:generate src="hub/integration/{1}.xml"/>
    <map:transform type="ldap"/>    
    <map:transform src="hub/LDAP2Group.xslt" type="xslt"/>
    <map:transform type="annuaire">
      <map:parameter name="use-connection" value="annuaire_datasource"/> 
    </map:transform>
    <map:serialize/> 
   </map:match> 

How solve my problem ?

How trace data between two transformers : 
  - between ldap and xslt
  - between xslt and annuaire...

Thank you

Didier Rano
Serv'N Data


---------------------------------------------------------------------
Please check that your question  has not already been answered in the
FAQ before posting.     <http://xml.apache.org/cocoon/faq/index.html>

To unsubscribe, e-mail:     <co...@xml.apache.org>
For additional commands, e-mail:   <co...@xml.apache.org>