Apache Camel has been a revelation in componentising flow based applications. Although getting started has been a hair pulling exercise at times..but definitely rewarding. I have the following route defined
from("imap:mailhost").process(new AttachmentProcessor).to("bean:translate").to("jms:queue:output") When I inspect the JMS header of published message, it contains unwanted properties propergated by camel from original email along with processing involved in the route. Example Properties={ to={String:us...@abc.com, us...@abc.com} org_apache_camel_splitSize={Integer:43} precedence={String:list} subject={String:Subject line from email} org_apache_camel_MultiParameterArray={String:false} from={String:us...@abc.com} org_apache_camel_splitCounter={Integer:12} How do I prevent these internal headers being copied into JMS header? -- View this message in context: http://www.nabble.com/How-do-I-filter-out-unwanted-header-properties-propergated-in-route-tp22495164p22495164.html Sent from the Camel - Users (activemq) mailing list archive at Nabble.com.