How to read text/html part of multipart/alternative Email?

2019-06-04 Thread Kamil Paśko
Dear Camel user list, I have such route: {code} import java.util.Map; import java.util.UUID; import javax.mail.internet.MimeMessage; import org.apache.camel.Attachment; import org.apache.camel.CamelContext; import org.apache.camel.EndpointInject; import org.apache.camel.Exchange; import org.apac

Re: JMSReplyTo improperly utilised by camel to send an incomplete message

2019-06-04 Thread Quinn Stevenson
It’s been a while since I’ve implemented a route that implements JMS request-response, but if I remember correctly, you need to choose whether Camel/Spring will handle the reply or you will. If you set disableReplyTo=true, Camel/Spring will send the reply using whatever is in the exchange at th

JMSReplyTo improperly utilised by camel to send an incomplete message

2019-06-04 Thread Mariusz Kosecki
Hello, My route is as follows: from("jms:topic:T.INPUT?disableReplyTo=false") .process(requestProcessor) .unmarshal().json(JsonLibrary.Jackson, MyRequest.class) .split(messageSplitter) .process(restProcessor) .unmarshal().json(JsonLibrary.Jackson, MyResponse.class) .aggregate(messagesAggregator) .