Camel Spring boot REST xml

2017-12-19 Thread Christine Vladic
Hello, What is the easiest way to unmarshall an XML payload to an object without having to explicitly create or specify the java class? I am POCing a REST service that consumes an XML message from an older system. In the Camel in Action, 2nd Edition book page 93, it says I can easily use XStr

RE: Multiple instance of a camel service

2017-11-21 Thread Christine Vladic
Hi Claus, Thank you - I just got the book. Christine Vladic -Original Message- From: Claus Ibsen [mailto:claus.ib...@gmail.com] Sent: Tuesday, November 21, 2017 4:31 AM To: users@camel.apache.org Subject: Re: Multiple instance of a camel service Hi If you have a copy of the Camel in

RE: Multiple instance of a camel service

2017-11-17 Thread Christine Vladic
n't matter what instance of your service in the cluster runs. Let the cluster, behave like a cluster. Cheers, Matt. -Original Message- From: Christine Vladic [mailto:christine.vla...@standard.com] Sent: Friday, 17 November 2017 1:34 PM To: users@camel.apache.org Subject: Multiple inst

Multiple instance of a camel service

2017-11-16 Thread Christine Vladic
Hi, I have a quartz camel service that invokes a REST API that returns a binary data. This service will be deployed in a clustered node thus multiple instances will invoke the same REST API and gets the same payload. Question, is there a camel pattern or component that can prevent instances

Instrument camel connector or endpoints

2017-11-16 Thread Christine Vladic
Hello, How can we instrument if a connector (ex. JDBC or JMS or HTTP) used in a camel route is healthy or not? Our service is written using Camel Springboot. Thank you, Chris

Camel Spring Boot datasource default property settings

2017-11-02 Thread Christine Vladic
Hi - We configure the datasource connection using spring datasource. I'd like to know the default datasource connection settings? Like - a) The maximum number of active connections allocated in the pool b) The maximum number of connections that is kept in the pool at all times