> How solve my problem ? > > How trace data between two transformers : > - between ldap and xslt > - between xslt and annuaire...
You can always comment out part of the pipeline temporarily and view the output directly. Eg: <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 type="xml"/> </map:match> Note that the serialize is now told that it's sending XML to the browser... You can then capture the output XML from the browser and cut and paste into your favorite XSLT debugging tool (assuming you have a standard XSLT), or just use it as a reference while editing the XSLT. As you get each transform working you move the comment down: <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 type="xml"/> </map:match> --------------------------------------------------------------------- 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: <[EMAIL PROTECTED]> For additional commands, e-mail: <[EMAIL PROTECTED]>