Hi, you appear to have defined a String ==> Date Converter using the @Converter annotation:
com.emc.srm.thirdparty.camel.component.atom.AtomConverter.toDate(java.lang.String) On the other hand as you make use of the camel-atom component (it's on the classpath) Camel detects an equivalent one by: org.apache.camel.component.atom.AtomConverter.toDate() If the used conversion format there (yyyy-MM-dd'T'HH:mm:ss) is good enough for you then just remove your own converter and let's Camel make use of the one camel-atom already provides. If not then you can ignore that warning as it just intends to say that an already provided Converter definition has been overrieden by another one that you provided. Babak -- View this message in context: http://camel.465427.n5.nabble.com/Atom-component-logs-warn-message-tp5466320p5466425.html Sent from the Camel - Users mailing list archive at Nabble.com.
