I was able to get a file splitter example to work via Java Code but can't seem to get it working via Spring xml configuration. The example given seems to be out of date as some of these tags do not appear in camel-spring.xsd. Am I missing something here, or do I have to go about it in a different way?
<camelContext id="buildSplitter" xmlns="http://activemq.apache.org/camel/schema/spring"> <route> <from uri="seda:a"/> <splitter> <recipients> <bodyAs class="java.lang.String"/> <tokenize token=""/> </recipients> </splitter> <to uri="seda:b"/> </route> </camelContext> -- View this message in context: http://www.nabble.com/Configure-a-file-splitter-to-work-via-XML-%28Camel-1.2%29-tp15715076s22882p15715076.html Sent from the Camel - Users mailing list archive at Nabble.com.
