Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Available as of Camel 2.9.3

From Camel 2.9.3, it is easier to specify new lines or tabs in XML DSLs as you can escape the value now

...

Available as of Camel 2.10.0

From Camel 2.10.0, the the trim attribute of the expression can be used to control whether the leading and trailing whitespace characters are removed or preserved. The default value is true, which removes the of trim=true removes all whitespace characters.

Code Block
xml
xml
<setBody>
  <simple trim="false">You get some trailing whitespace characters.     </simple>
</setBody>

...