Hi !
I use yesterday's trunk version and tried
with test.xslt :Code:<message-bus /> <file:inbound-channel-adapter id="inputChannel" directory="file:C:/input"> <poller> <interval-trigger interval="1000" /> </poller> </file:inbound-channel-adapter> <file:outbound-channel-adapter id="outputChannel" directory="C:/output" /> <si-xml:xslt-transformer input-channel="inputChannel" xsl-resource="file:C:/test.xslt" output-channel="outputChannel" />
and test.xml in the input directory :Code:<?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="text"/> <xsl:template match="/person"> <xsl:value-of select="name"/> </xsl:template> </xsl:stylesheet>
The test.xml input file is read but i have nothing in the output directory and no visible error/exception.Code:<?xml version="1.0"?> <persons> <person> <name>John</name> <family-name>Smith</family-name> </person> </persons>
Where I am wrong ?
Thank you for your help !


Reply With Quote
