Re: Processed message counters

2018-01-25 Thread Olivier Eymere
posting an auditing message to Splunk over HTTP. By doing > > that, we can not only get counts over a particular timeframe, but we can > > derive message rates as well. > > > > > > > On Jan 25, 2018, at 2:56 PM, Olivier Eymere wrote: > > > > > > I am

Processed message counters

2018-01-25 Thread Olivier Eymere
I am looking for a way to keep running counts of all of the processed messages. The last part of the camel application is a route that posts the message to a web service, we need to keep counts of the various responses so that when the entire process is complete and the application is exiting it w

Re: Can't make camel-example-spring-security works

2016-08-29 Thread olivier
ovide a patch / github PR with a fix > > http://camel.apache.org/support.html > > http://camel.apache.org/contributing.html > > > > On Fri, Aug 19, 2016 at 9:53 AM, olivier <[hidden email] > <http:///user/SendEmail.jtp?type=node&node=5786774&i=1>> wrote: > >

Re: Can't make camel-example-spring-security works

2016-08-19 Thread olivier
So, i've figured it out by myself. Here is the solution for those who might have the same issue. It seems Camel security 2.17.3 depends on Spring security 4.x...but the camel-context spring security part of the example is written in Spring security 3.x, which produces the errors above, because, in

Can't make camel-example-spring-security works

2016-08-17 Thread olivier
Launcher.mainWithExitCode(Launcher.java:415) at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356) I can't understand how to fix it and don't understand why I get this out of the box, I haven't touched anything in the example. Any idea? Anyone can have it working? Tha

Re: Camel Splunk component

2013-05-02 Thread Olivier Lamy
e in context: > http://camel.465427.n5.nabble.com/Camel-Splunk-component-tp5730476p5730520.html > Sent from the Camel - Users mailing list archive at Nabble.com. -- Olivier Lamy Ecetera: http://ecetera.com.au http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: placeholder in from uri

2013-04-03 Thread Olivier Lamy
Spring ${ } is being tracked by > https://issues.apache.org/jira/browse/CAMEL-6233 > > And added in upcoming releases. > > > On Wed, Apr 3, 2013 at 1:50 PM, Olivier Lamy wrote: >> Hi, >> >> I'd like to be able to use something like: >> >

placeholder in from uri

2013-04-03 Thread Olivier Lamy
tails available here: https://gist.github.com/olamy/5298824 Is it possible to use a placeholder for the whole uri ? Or the scheme (sftp, etc) is a minimum requited ? Thanks -- Olivier Lamy Ecetera: http://ecetera.com.au http://twitter.com/olamy | http://linkedin.com/in/olamy

start a route at the end of another

2012-12-19 Thread Olivier Ziller
Hello, i have a route that reads a directory and process a number of files contained in this directory. i would like to log the number of files at the end of the processing of the directory. i tried to use oncompletion but it's called for each file. any idea on how to do that? thanks in adv

Re: mandatory attribute in the ConvertBodyTo Spring DSL ?

2012-05-21 Thread Olivier Roger
Hello Christian, That is exactly what I needed to know. In fact I had an error before the convertion. -- View this message in context: http://camel.465427.n5.nabble.com/mandatory-attribute-in-the-ConvertBodyTo-Spring-DSL-tp5710933p5712777.html Sent from the Camel - Users mailing list archive at

mandatory attribute in the ConvertBodyTo Spring DSL ?

2012-05-16 Thread Olivier Roger
Hello Camel ! I was wondering if there was a possibility to enforce that the EIP returns a non-null value. This is already the case when using the TypeConverter when choosing to use the mandatoryConvertTo() method instead of convertTo. Thank in advance, Olivier Roger -- View this message in

Re: [Camel-Exec] Properties and Header values in URI ?

2010-08-16 Thread Olivier Roger
I just confirm using ExecBinding.EXEC_COMMAND_ARGS does exactly what I needed. As explained the parameter value must be a List Java object. -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Exec-Properties-and-Header-values-in-URI-tp1046744p2636437.html Sent from the Came

Re: [Camel-Exec] Properties and Header values in URI ?

2010-07-13 Thread Olivier Roger
It looks exactly like what I was looking for. I'll try and get back to you. Thanks! -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Exec-Properties-and-Header-values-in-URI-tp1046744p1046797.html Sent from the Camel - Users (activemq) mailing list archive at Nabble.com

[Camel-Exec] Properties and Header values in URI ?

2010-07-13 Thread Olivier Roger
Thank in advance, Olivier -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Exec-Properties-and-Header-values-in-URI-tp1046744p1046744.html Sent from the Camel - Users (activemq) mailing list archive at Nabble.com.

Re: [CxfBinding] Document Style ?

2010-07-11 Thread Olivier Roger
Willem, That seems to be exactly what I needed. Adding the annotation in the SEI is working as expected :) I will try this endpoint configuration and confirm it is also working as expected. Thanks for your help! -- View this message in context: http://camel.465427.n5.nabble.com/CxfBinding-Doc

Re: [CxfBinding] Document Style ?

2010-07-09 Thread Olivier Roger
My bad I confused the different modes. I will try that I get back to you. It there a possibility not to modify the SEI but the CXF Endpoint definition instead ? -- View this message in context: http://camel.465427.n5.nabble.com/CxfBinding-Document-Style-tp1045363p1045540.html Sent from the Cam

Re: [CxfBinding] Document Style ?

2010-07-09 Thread Olivier Roger
I was also expecting document to be the default value. For retro-compatibility reasons, I would like to keep the SEI unchanged, and try to fix the issue by tweeking the route is possible. Here is the SEI: @WebService(targetNamespace = "http://www.mycompany.com/services";) public interface Offer

Re: [CxfBinding] Document Style ?

2010-07-09 Thread Olivier Roger
Here is what I get: http://schemas.xmlsoap.org/soap/envelope/";> http://www.mycompany.com/services";> http://www.mycompany.com/service/offer/proposal";> 1234

[CxfBinding] Document Style ?

2010-07-09 Thread Olivier Roger
ot;binding" /> What is intriguing is that the WSDL specify explicitly the style to document. ... http://schemas.xmlsoap.org/soap/http"/> ... I tested it successfully with SOAPUI. It detects it in document mode. Th

Re: [CxfBinding] Document Style ?

2010-07-09 Thread Olivier Roger
What is intriguing is that the WSDL specify explicitly the style to document. ... http://schemas.xmlsoap.org/soap/http"/> ... I tested it successfully with SOAPUI. It detects it in document mode. -- View this message in context: http://camel.465427.n5.nabble.com/CxfBinding-Document-Style-t

Re: Expression Attributes

2010-06-09 Thread Olivier Roger
know if using a placeholder ${lang} there is supported With the following externalized property file: lang=groovy expr=metadata.value I guess this can be done inside a bean, best would be to do it in the route declaration in Spring DSL. Any idea is welcome, Olivier willem.jiang wrote

Expression Attributes

2010-06-08 Thread Olivier Roger
would have the same name. I was wondering how I could instantiate that bean. I could not find information about that in the online documentation. I would also like to use it with Spring DSL. Any help on this would be welcome, Thanks in advance Olivier -- View this message in context: ht

Re: Velocity component

2010-04-22 Thread Olivier Roger
I could indeed unmarshal using JAXB but I would like to use as less Java as possible. I am facing an other problem now: When I extract the value using XPath like this: /ns1:person/ns1:firstName/text() and use it in the velocity template with: Hello ${headers.firstname} It produce this kind of

Re: Split Body in Spring DSL

2010-04-22 Thread Olivier Roger
That's great news. Thanks! Using body is also working like you indicated ;) Olivier Claus Ibsen-2 wrote: > > On Wed, Apr 21, 2010 at 9:23 PM, Olivier Roger > wrote: >> >> I understand the better now, >> >> Anyways, this would really be a useful featur

Re: Split Body in Spring DSL

2010-04-21 Thread Olivier Roger
quot; + body, which cause Camel > to type coerce the body to a String type as well. > > I will look into this. > > On Mon, Apr 19, 2010 at 9:28 AM, Olivier Roger > wrote: >> >> Hello Claus, >> >> I was using the tokenize on "]," but some brack

Velocity component

2010-04-19 Thread Olivier Roger
x27;,'${body.ns0:person/ns0:address/ns0:zipCode}','${body.ns0:person/ns0:socialId}') I am also intressted in any other way to use the body values. Thanks in avance, Olivier -- View this message in context: http://old.nabble.com/Velocity-component-tp28287678p28287678.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Split Body in Spring DSL

2010-04-19 Thread Olivier Roger
instead of per row. So a 5 line, with 5 line per row, document is split into 25 messages. Is there a way to force change this behavior ? Thanks, Olivier Claus Ibsen-2 wrote: > > Hi > > Yeah the split EIP pattern will be explained in chapter 8 in both Java > and Spring XML ex

Split Body in Spring DSL

2010-04-18 Thread Olivier Roger
().csv().split(body()).to("..."); Here is my Spring DSL route Thanks in advance for your help

Re: [CXF] Inbound endpoint with PAYLOAD dataformat

2010-04-14 Thread Olivier Roger
mel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfPayload.java > > Willem > > > Olivier Roger wrote: >> I remove the xmlbeans usage to use an interface using String as input and >> output parameter types. >> >> pa

Re: [CXF] Inbound endpoint with PAYLOAD dataformat

2010-04-14 Thread Olivier Roger
I did not specify it but here is the message I try to send: http://schemas.xmlsoap.org/soap/envelope/"; xmlns:esb="http://www.bsb.com/incubator/esb";> 528404-885-24 I am not sure it helps though... Olivier Roger wrote: > > I remo

Re: [CXF] Inbound endpoint with PAYLOAD dataformat

2010-04-14 Thread Olivier Roger
png I provided the sample of my project. Olivier Roger wrote: > > Thanks for you input willem, > > I am using the lastest Fuse ESB distribution which includes Camel 2.2. > I will try to launch the example you indicated and what is different from > my implementation. > >

Re: [CXF] Inbound endpoint with PAYLOAD dataformat

2010-04-14 Thread Olivier Roger
Thanks for you input willem, I am using the lastest Fuse ESB distribution which includes Camel 2.2. I will try to launch the example you indicated and what is different from my implementation. If I cannot figure it out I will provide a sample project. Olivier willem.jiang wrote: > >

[CXF] Inbound endpoint with PAYLOAD dataformat

2010-04-14 Thread Olivier Roger
bsite but found it quite not clear. Am I doing something wrong? Thanks in advance, Olivier -- View this message in context: http://old.nabble.com/-CXF--Inbound-endpoint-with-PAYLOAD-dataformat-tp28240799p28240799.html Sent from the Camel - Users mailing list archive at Nabble.com.

[WebService] Invoke specific operation with params using configuration

2010-03-31 Thread Olivier Roger
much. What is more problematic is the data parameter, I would like for it to be message dependent. Could someone tell me if and how it is possible to let Camel handle the SOAP transformation and how I can provide service, method and parameter values in that case ? Thanks in advance, Olivier -- View this

Re: Defining a DeadLetterChannel when using POJO annotations

2010-02-05 Thread Olivier Billard
direct channels ? In this case, this would do a lot of traffic between Camel and the broker, even if the 2 of them are quite near in my architecture... Sorry if I missed a point on Camel, I really am new to it :) -- Olivier Claus Ibsen-2 wrote: > > On Fri, Feb 5, 2010 at 10:08 AM, Oli

Re: Defining a DeadLetterChannel when using POJO annotations

2010-02-05 Thread Olivier Billard
with this, but this works for the moment. But the risk here of loosing messages is higher, isn't it ? Could the use of a transactional error handling bring something here with the direct channels ? -- Olivier Claus Ibsen-2 wrote: > > On Thu, Feb 4, 2010 at 11:02 PM, Olivier Billard

Re: Defining a DeadLetterChannel when using POJO annotations

2010-02-04 Thread Olivier Billard
Action: http://www.manning.com/ibsen/ > Open Source Integration: http://fusesource.com > Blog: http://davsclaus.blogspot.com/ > Twitter: http://twitter.com/davsclaus > > - -- Olivier Billard -- View this message in context: http://old.nabble.com/Defining-a-DeadLetterChannel-w

Defining a DeadLetterChannel when using POJO annotations

2010-02-04 Thread Olivier Billard
ckupqueue -> content-based router ( {root-element=ws1} -> direct:ws1 -> ws1 endpoint (I need a dead letter channel here) {root-element=ws2} -> direct:ws2 -> ws2 endpoint (I need a dead letter channel here) ) Can someone please help me to find what t