Re: Possible bug in netty-http - characters in body get unescaped?

2019-06-06 Thread Jan Bednář
Hello, This is not about netty, but about Simple language. Simple language is not intended for static content. Camel does parsing of whole file while resolving simple placeholders in file content. For this kind of usage you should use Constant language:     resource:classpath:jquery.js    

Re: camel-ftp: meaning of option "UseUserKnownHostsFile" in combination with "knownHostsUri"

2019-06-06 Thread Alex Dettinger
Hi Peter, When CAMEL-8202 has been fixed, the isUseUserKnownHostsFile might have been added to preserve the default behaviour across the camel 2.x line. But then, the default value should have been false and you would not have been impacted. At the end of the day, setting this option to

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

2019-06-06 Thread Quinn Stevenson
Since the route works as expected when you remove the split, I’d try moving all the split/aggregate logic into a direct route and call that from the main route and see if that works. > On Jun 6, 2019, at 6:40 AM, Quinn Stevenson > wrote: > > Mariusz I still have issues with the mailing list

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

2019-06-06 Thread Quinn Stevenson
Mariusz I still have issues with the mailing list - he said: Hi, When I specify the consumer as "disableReplyTo=false" and remove the to("") at the end, then after replacing split() with process(mockSplitter) and aggregate() with process(mockAggregator), this works. The mocked message ends up

camel-ftp: meaning of option "UseUserKnownHostsFile" in combination with "knownHostsUri"

2019-06-06 Thread Marx, Peter
Using Camel 2.23.2, I have provided a known_hosts file on classpath and refer to it in the route: .to("sftp://user@sftpserver/out?knownHostsUri=known_hosts=privkey.pem=***;); When running this, usage of knownHostsUri is confirmed, but after that it switches back to using my local user

Re: select message via camel filter

2019-06-06 Thread Andrea Cosentino
You can find the updated documentation in github https://github.com/apache/camel/blob/master/components/camel-jms/src/main/docs/jms-component.adoc Il giorno gio 6 giu 2019 alle ore 09:21 James Carman < ja...@carmanconsulting.com> ha scritto: > Try using a JMS selector on the URI: > >

Re: select message via camel filter

2019-06-06 Thread James Carman
Try using a JMS selector on the URI: https://camel.apache.org/jms.html On Thu, Jun 6, 2019 at 1:03 AM Wang Yan wrote: > I used below example to select message. > although it can send matched message to toqueue > but not matched messages are also dequeued > What I want to achieve is only