Re: Rest DSL: org.apache.camel.ExchangeTimedOutException: The OUT message was not received within: 20000 millis

2015-01-11 Thread Claus Ibsen
Hi Not sure what is wrong there. But setting exchangePattern=InOnly works in unit tests. You could try setting disableReplyTo=true as a workaround On Fri, Jan 9, 2015 at 3:05 PM, Ettoregia wrote: > Hi All, > > I'm facing a problem which I guess stems from the usage of MEP. > > Actually when I h

Re: Rest DSL: org.apache.camel.ExchangeTimedOutException: The OUT message was not received within: 20000 millis

2015-01-11 Thread Claus Ibsen
Hi Ah spotted the issue. I have logged a ticket https://issues.apache.org/jira/browse/CAMEL-8227 You can use .to(ExchangePattern.InOnly, "jms:xxx") as the solution. On Sun, Jan 11, 2015 at 10:52 AM, Claus Ibsen wrote: > Hi > > Not sure what is wrong there. But setting exchangePattern=InOnly wor

Re: Timeout Exception in S3 download

2015-01-11 Thread Willem Jiang
Can you increase the delay option and maxMessagePerPoll to see if the error is still there? from("aws-s3://MyBucket?amazonS3Client=#client&delay=5000&maxMessagesPerPoll=5") .to("mock:result”); -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com (Eng

JMSReplyTo not being removed

2015-01-11 Thread Minh Tran
Hi It seems that when Camel replies to a message, it does not remove the JMSReplyTo header off the reply. I have looked at the unit test testSendInOnlyWithReplyTo in Camel’s unit tests and there’s a comment there that describes having to ignore this field being sent. // we should disable reply

Re: Help: FTP/SFTP File Delete Problem and FTP/SFTP Polling Problem

2015-01-11 Thread Claus Ibsen
On Sun, Jan 11, 2015 at 3:48 AM, yeandone wrote: > Thanks, Claus. Will try a new version. But do you know why it always > prompts the following warnings when the routes stops? Will they impact > anything and the original file? > > 1. If choose not to delete the file, it prompts when the route stop

Re: Issue in publishTopicName in mqtt component

2015-01-11 Thread Claus Ibsen
Hi I logged a ticket to not forget about this https://issues.apache.org/jira/browse/CAMEL-8228 On Sun, Dec 21, 2014 at 7:57 PM, Pontus Ullgren wrote: > Just tested this usecase and I can indeed recreate it with the Camel 2.14.1. > Have you opened a Jira for this issue already if not I can create

Re: Help: FTP/SFTP File Delete Problem and FTP/SFTP Polling Problem

2015-01-11 Thread yeandone
Will there be any risks if I stop route like that? After the exchange is processed by both end endpoints direct a and direct b. I need to stop the route so that the consumer can stop polling. Can you please give some ideas to stop route/consumer properly so that the route and consumer will stop pro