JMSMessage vanishes attachments
-------------------------------
Key: CAMEL-1414
URL: https://issues.apache.org/activemq/browse/CAMEL-1414
Project: Apache Camel
Issue Type: Bug
Components: camel-jms
Affects Versions: 2.0.0
Reporter: Nicolas Bouillon
When using this kind of route
<from uri="activemq:queue:test"/>
<camel:process ref="mailProcessor" />
<to uri="smtp://localhost:25?to=u...@localhost" />
and trying to enrich the message in the mailProcessor with
exchange.getIn().addAttachment("attachement.txt",
new DataHandler("Hello world", "text/plain"));
The received mail doesn't contains any attachment.
If the input "from" is a "direct" instead of activemq, it works fine.
Inspecting source code, MessageSupport.copyFrom(Message that) does
getAttachments().putAll(that.getAttachments());
but the child class JmsMessage doesn't.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.