Hello, Is there an example of using an XSLT in the Spring XML configuration?
I have something like the following:
<route>
<from uri="..." />
<to uri="xslt:..." />
<!-- *but now what?* -->
</route>
The XML Schema says I can only have one <to />. In the DSL, you would write
from("...").to("xslt:...").to("...") to write the output to a new
destination.
Thanks,
David
