Since we're on a major migration process of this website, some component documents here are out of sync right now. In the meantime you may want to look at the early version of the new website
https://camel.apache.org/staging/
We would very much like to receive any feedback on the new site, please join the discussion on the Camel user mailing list.
Exception: org.xml.sax.SAXParseExceptionThe reference to entity "..." must end with the ';' delimiter.In the URIs used for specifying Camel endpoints, the & is used to separate the parameters. However, & also is a reserved character in XML. An example: this snippet of code in the DSL... from("timer://myTimer?fixedRate=true&delay=0&period=2000") ...matches this example in the Spring XML syntax <from>timer://myTimer?fixedRate=true&delay=0&period=2000</from> |