Multicast and aggregate exception propagation

2016-04-18 Thread Kostov, Andreya
Hello, I have a route that looks something like this (simplified): from("direct:start") .multicast() .to("direct:route-1", "direct:route-2", "direct:route-3") .end() .to("direct:end"); from("direct:route-1") // Processing .multicast() .to("direct:route-1-1", "direct:route-1-2"); from("direct:ro

RE: Camel hawtdb for aggregation

2016-04-05 Thread Kostov, Andreya
Hello Vanshul, >From the POM excerpt you provided, I can see that you have specified version >2.3.0 for camel-hawtdb. You should use the same version for the components as >your camel-core version (i.e. 2.15.0), I believe that is the reason for your >issue. Best regards, Andreya -Original

RE: Use LDAP component to connect to different backend systems

2016-03-19 Thread Kostov, Andreya
Hello Thomas, Thank you for the suggestion. However I'm not sure this would help as the issue that the LdapProducer reads the beans from Spring context still remains - we still cannot do anything with the beans by adding/removing routes at runtime. Anyway, for future reference - we have managed

Use LDAP component to connect to different backend systems

2016-03-15 Thread Kostov, Andreya
Hello, We are using Spring Web 4.2.4 and Apache Camel 2.16.2. We want to create a route which reads data from an Active Directory service. We want to use the Camel LDAP component. Our requirement is that we are able to read from different backend systems, which are configured by the user. The Ld