New Camel XML routes look like this:
<?xml version="1.0" encoding="ASCII"?> <spring:route xmlns:spring="http://camel.apache.org/schema/spring"> <spring:from uri="switchyard://HelloWorld"/> <spring:log message="HelloWorld - message received: ${body}"/> </spring:route>
Having to add "spring:" to every line of the route is kinda stinky. Can we just do this instead?
<?xml version="1.0" encoding="ASCII"?> <route xmlns="http://camel.apache.org/schema/spring"> <from uri="switchyard://HelloWorld"/> <log message="HelloWorld - message received: ${body}"/> </route>
Also, what's up the encoding of "ASCII" instead of "UTF-8" ?