Re: Unstable test with camel-test-blueprint

2015-10-09 Thread arnaudeprez
Hi again,

I've posted my dependency tree there
http://camel.465427.n5.nabble.com/VOTE-Camel-2-16-0-td5772119i20.html.

I may do something wrong but I just read the source code of the pom here
https://repo1.maven.org/maven2/org/apache/camel/camel-test-blueprint/2.15.2/camel-test-blueprint-2.15.2.pom
 

and it's written in comments : 



As the only depdencies I use for blueprint is camel-blueprint and
camel-test-blueprint, it should be fine, isn't it ?




--
View this message in context: 
http://camel.465427.n5.nabble.com/Unstable-test-with-camel-test-blueprint-tp5772185p5772466.html
Sent from the Camel - Users mailing list archive at Nabble.com.


Re: Using shared Netty configuration with Rest DSL

2015-07-31 Thread arnaudeprez
Hi Claus,

I confirm there is a glitch here when we use componentProperty instead of
endpointProperty for netty4-http component.
I suppose it's more related to the new rest dsl than the component itself.

I'm not able to find an issue for that. Is that taken into account ? 
Otherwise I can log a new issue for that.

Rgds,

A.



--
View this message in context: 
http://camel.465427.n5.nabble.com/Using-shared-Netty-configuration-with-Rest-DSL-tp5767400p5770147.html
Sent from the Camel - Users mailing list archive at Nabble.com.


Re: Unit test XA enabled route

2014-07-24 Thread arnaudeprez
Hi,

Christian Mueler did a great camel in transaction sample :
https://github.com/muellerc/camel-in-transaction
Thx to him.



--
View this message in context: 
http://camel.465427.n5.nabble.com/Unit-test-XA-enabled-route-tp5754352p5754402.html
Sent from the Camel - Users mailing list archive at Nabble.com.


Re: AW: Split XML with xmlTokenizer and add root element?

2014-04-24 Thread arnaudeprez
Hi jhm,

I agree, this kind of stuff can be very useful especially for huge file
(otherwise we can use xslt and split combinaition).

The problem here is how to keep the configuration of the tokenizer simple.

For example, we can have : 
Input : 
root
header1.../header1
header2.../header2
body
data.../data
data.../data
/body
footer.../footer
/root

Expected splitted result : 

root
header.../header
body
data.../data
/body
footer.../footer
/root

root
header.../header
body
data.../data
data.../data
/body
footer.../footer
/root

We also may have a message with many headers and/or footers.



--
View this message in context: 
http://camel.465427.n5.nabble.com/Split-XML-with-xmlTokenizer-and-add-root-element-tp5750237p5750529.html
Sent from the Camel - Users mailing list archive at Nabble.com.