RE: Data Corruption in SFTP in Parallel Multicast branches

2015-01-15 Thread lakshmi.prashant
Hi Stephan, The body of the main exchange should be copied to the branch exchanges, as intended (Option 2 suggested by you). But I am not sure if it will lead to performance / memory issues, if there are more branches with huge data in the body of the main route. Thanks, Lakshmi -- Vi

Re: Where is logName used?

2015-01-15 Thread Claus Ibsen
Hi Kinda weird as that log name refers to the slf4j marker which you can also use. Are you sure the log() method you use, its the logger name and not some marker parameter? Also you do not use any custom logger instance, as if so then that is used over what you specify in the log method,. https:/

Re: Camel-Netty ReadTimeout event not trigerred

2015-01-15 Thread Claus Ibsen
rg.apache.camel.impl.ProducerCache.sendExchange(ProducerCache.java:346) > at org.apache.camel.impl.ProducerCache.send(ProducerCache.java:201) > at > org.apache.camel.impl.DefaultProducerTemplate.send(DefaultProducerTemplate.java:128) > at > org.apache.camel.impl.DefaultProducerTemplate.sendBody(DefaultP

Re: Camel-Netty ReadTimeout event not trigerred

2015-01-15 Thread V4Vaithi
I am using camel 2.14.0 -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Netty-ReadTimeout-event-not-trigerred-tp5761676p5761776.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Irrecoverable faults

2015-01-15 Thread James Green
I saw a StackOverflow question asking the difference between errorHandler and onException. I believe the answer given was that errorHandler handles exceptions not otherwise trapped by onException. If this is true (and the complete answer) it may be wise to add this line to the documentation..? On

Re: Where is logName used?

2015-01-15 Thread James Green
log4j.appender.console=org.apache.log4j.ConsoleAppender log4j.appender.console.layout=org.apache.log4j.PatternLayout log4j.appender.console.layout.ConversionPattern=%d{ABSOLUTE} %5p %C:%L %M() - %m%n ### set log levels - for more verbose logging change 'info' to 'debug' ### log4j.rootLogger=debug,

Re: Using named query parameters

2015-01-15 Thread Ettoregia
Hi There, in my case works but I had to escape the : and #, see the example below INSERT INTO "ORDER" (name, status, \"processID\") VALUES(\:\#name, \:\#status, \:\#processID) -- View this message in context: http://camel.465427.n5.nabble.com/Using-named-query-parameters-tp5758002p5761770.htm

Re: Camel-Netty ReadTimeout event not trigerred

2015-01-15 Thread Joan Picanyol i Puig
Ouch, just noticed that I confused sync with synchronous, sorry for the confusion. We still have the issue though, I'll try coming up with a simple route. * Joan Picanyol i Puig [20150115 16:15]: > Hi, > > We've been chasing pretty much the same issue for some days (on C

Re: Camel-Netty ReadTimeout event not trigerred

2015-01-15 Thread Joan Picanyol i Puig
rTemplate.java:128) at org.apache.camel.impl.DefaultProducerTemplate.sendBody(DefaultProducerTemplate.java:132) at org.apache.camel.impl.DefaultProducerTemplate.requestBody(DefaultProducerTemplate.java:277 * Claus Ibsen [20150115 09:42]: > Hi > > I added an unit test to camel-netty that works >

Automatically Increating Topic subscriptionID

2015-01-15 Thread Arcadius Ahouansou
Hello. We are using Camel 2.14.1 to consume messages from an ActiveMQ topic. We are using connection pooling. Everything is working OK. We have however noticed that the subscriptionID on the ActiveMQ admin UI keeps increasing almost every 2-second. Is this normal behaviour? Thanks. Arcadius.

Re: Camel-Netty ReadTimeout event not trigerred

2015-01-15 Thread Claus Ibsen
Hi I added an unit test to camel-netty that works https://github.com/apache/camel/commit/76c6a275e49960a6011c0c13102877c0ccf61366 On Thu, Jan 15, 2015 at 9:24 AM, Claus Ibsen wrote: > What version of Camel do you use? > > > > On Wed, Jan 14, 2015 at 1:41 PM, V4Vaithi wrote: >> ReadTimeout event

Re: Camel-Netty ReadTimeout event not trigerred

2015-01-15 Thread Claus Ibsen
What version of Camel do you use? On Wed, Jan 14, 2015 at 1:41 PM, V4Vaithi wrote: > ReadTimeout event is not triggered properly after adding custom > encoder/decoder to endpoint. > > I am using DelimiterBasedFrameDecoder & StringEncoder as custom codecs. > > My Route Confuiguration is as follo