Re: Limiting thread pool size for parallelProcessing?

2014-08-14 Thread Claus Ibsen
Hi See also http://camel.apache.org/threading-model.html how you can setup thread pools / thread pool profiles etc, and assign those to the eips and components and whatnot. On Wed, Aug 13, 2014 at 7:41 PM, efenderbosch eric.fenderbo...@segmint.com wrote: Of course, I figure it out 30 minutes

BreadcrumbId is null after using transacted

2014-08-14 Thread rwijngaa
Hi, I noticed the breadcrumbId is null after i use transacted. Is this by design? See example route below. from(step4)) .routeId(route-step4) .onCompletion().onCompleteOnly().bean(loggingProcessor, LoggingProcessor.AUDIT) .end()

RecepientList - Individual Target status

2014-08-14 Thread contactreji
Hi Camel Riders I am using camel recepientList EIP for dynamic target system determination. Route as follows route from uri=direct:a / recipientList delimiter=# headerlistOfTargetSystems/header /recipientList /route Just wanted to know *if there is a way I can track the one

Re: Retrieving EXEC_EXIT_VALUE from exec endpoint

2014-08-14 Thread Gonzalo Vasquez
Thanks Willem, I thought simplicity might have worked, but sadly no...switching from out to in to get the header doesn't give me any output either :( Gonzalo Vásquez Sáez Gerente Investigación y Desarrollo (RD) Altiuz Soluciones Tecnológicas de Negocios Ltda. Av. Nueva Tajamar 555 Of. 802, Las

Re: Question: camel-sql out of memory error

2014-08-14 Thread Claus Ibsen
Hi IMHO you should only set that fetch limit if getMaxMessagesPerPoll 0. So the user needs to set that option explicit if he/she want to limit it. On Wed, Aug 13, 2014 at 2:07 PM, Christian Müller christian.muel...@gmail.com wrote: At present, we do not limit the fetch size on the JDBC

Re: RecepientList - Individual Target status

2014-08-14 Thread Claus Ibsen
The exchange contains a property with the failure endpoint http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/Exchange.html#FAILURE_ENDPOINT And you can use an aggregation strategy on the recipient list to handle when the recipients are done. Some details at

Re: BreadcrumbId is null after using transacted

2014-08-14 Thread Claus Ibsen
What Camel version do you use? And what kind of component is from(step4) ? On Thu, Aug 14, 2014 at 2:26 PM, rwijngaa rino.van.wijngaar...@gmail.com wrote: Hi, I noticed the breadcrumbId is null after i use transacted. Is this by design? See example route below. from(step4))

Re: Overriding Properties

2014-08-14 Thread Claus Ibsen
Hi I logged a ticket to not forget about this https://issues.apache.org/jira/browse/CAMEL-7699 On Mon, Aug 11, 2014 at 4:56 PM, Matt Raible m...@raibledesigns.com wrote: On Sat, Aug 9, 2014 at 2:47 AM, Claus Ibsen claus.ib...@gmail.com wrote: Hi Yeah not sure if Spring Boot does stuff

Re: HTTP basic authorization with HTTP4?

2014-08-14 Thread apache999
Thanks Willem. I was having issues configuring the keystore and truststore. I tried implementing the HttpClientConfigurer below but I am not seeing the keystore and specified truststore loading up in the javax.net.debug during SSL handshake. I only see the default jre/lib/security/cacerts

Re: HTTP basic authorization with HTTP4?

2014-08-14 Thread apache999
public class MyRouteBuilder extends RouteBuilder { public void configure() { *//Missed this in previous post * *configureSslForHttp4();* from(jetty:http://server:4443/fdggwsapi/services;).process(new

Re: Retrieving EXEC_EXIT_VALUE from exec endpoint

2014-08-14 Thread gvasquez
Debugging camel's java code I found out that the actual header name is CamelExecExitValue, the other was just the Java constant name for such header. Headers ARE in fact being correctly set in java code, but the just don't appear in next spring DSL instruction. Could anyone help me please? El

Re: HTTP basic authorization with HTTP4?

2014-08-14 Thread apache999
Please disregard this thread. The JSSE Configuration Utility worked for me(instead of HttpClientConfigurer). -- View this message in context: http://camel.465427.n5.nabble.com/HTTP-basic-authorization-with-HTTP4-tp5755181p5755228.html Sent from the Camel - Users mailing list archive at

Exec endpoint not working correctly with recipientList

2014-08-14 Thread Gonzalo Vasquez
Hi there! Experimenting with the exec endpoint I found out that it works perfectly (setting CamelExecExitValue header) when invoked with hardcoded args, such as: camel:to uri=exec:///opt/ibm/ondemand/V9.0/bin/arsload?args=-f -g FONDO -h 192.168.10.77 -u admin -p password

Re: Question: camel-sql out of memory error

2014-08-14 Thread Christian Müller
Yes, of course... I have opened a JIRA [1] and start working on it. [1] https://issues.apache.org/jira/browse/CAMEL-7700 Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC

Re: Camel Mybatis 2.13.1 multiple statementTypes in a batch or Transaction?

2014-08-14 Thread sandp
Hello Mueller, I used the DB transaction, but I see that the transaction is not rolled back on an exception. I tried with transacted() in route instead of policy() but it behaved the same way. E.g. Exception case:The first two updates were not rolled back on failure of the third one below:

Re: Exec endpoint not working correctly with recipientList

2014-08-14 Thread Claus Ibsen
Hi What camel version do you use? And can you try add something after recipient list, such as to uri=log:foo?showAll=true/ And see if you have the header now, On Thu, Aug 14, 2014 at 6:18 PM, Gonzalo Vasquez gvasq...@altiuz.cl wrote: Hi there! Experimenting with the exec endpoint I found

Re: Exec endpoint not working correctly with recipientList

2014-08-14 Thread Gonzalo Vasquez
Dear Claus, I'm using the latest camel version: dependency groupIdorg.apache.camel/groupId artifactIdcamel-spring-ws/artifactId version2.13.2/version /dependency I have already tried using

Re: Exec endpoint not working correctly with recipientList

2014-08-14 Thread gvasquez
Just built a workaround...using a dummy exec with no args, but setting both the executable and the args via de proper header prior to endpoint invocation, that way I finally DO GET the correct output headers, with the flexibility of a dynamic URL. Spring DSL:

Re: Retrieving EXEC_EXIT_VALUE from exec endpoint

2014-08-14 Thread Willem Jiang
OH, you should use ${in.header.CamelExecExitValue} to look up the exit value. The simple expression doesn’t support to look up the Java constant string value as you thought :) -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com (English)

Re: Inflight message gone when CamelContext shutdown

2014-08-14 Thread sckwow
I checked all queues available... the message simply gone without going to DLQ... any other idea? -- View this message in context: http://camel.465427.n5.nabble.com/Inflight-message-gone-when-CamelContext-shutdown-tp5755017p5755238.html Sent from the Camel - Users mailing list archive at