Issue Type: Task Task
Affects Versions: 0.5
Assignee: Unassigned
Components: tooling
Created: 24/Jun/12 8:40 AM
Description:

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" ?

Fix Versions: 0.5
Project: SwitchYard
Priority: Major Major
Reporter: Keith Babo
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira