Re: Looking for a transactional solution

2021-04-07 Thread George Daswani
Steve, The transactional EIP supports crossing multiple routes as long as each one of those routes are transactionally aware (transaction demarcation) and your JMS connection factory is configured properly and set-up to use a transaction manager. I personally use camel under an OSGI c

Looking for a transactional solution

2021-04-07 Thread Brenneis, Steve
I hope this is the right place to ask this question. If not, maybe someone can direct me to the right place. I have an application that reads messages from a queue, passes them off to a content-based router, which then passes them to various validation and transformation routes. At the end of e

Re: Copy over state for multicast eip

2021-04-07 Thread Benjamin Graf
Hi Clause, well, the code is quite to complex to put it into an easy test case. But I can share the idea. We're using nested transaction to separate incoming MQ system from several transactional systems. In case of error we do disqualify message to kind of deadletter queue and rollback all ac

Re: camel-quarkus-dozer. Error when running native executable

2021-04-07 Thread Zheng Feng
Hi Federico, I can reproduce this issue with the camel-quarkus-dozer and please raise an issue on https://github.com/apache/camel-quarkus/issues. I think it should be fixed in the camel-quarkus. Thanks, Zheng Feng On Wed, Apr 7, 2021 at 10:22 PM Federico Sajeva wrote: > Thank you Alexandre, >

Re: camel-quarkus-dozer. Error when running native executable

2021-04-07 Thread Federico Sajeva
Thank you Alexandre, it worked like a charm with both the ways suggested (annotated dummy class or reflection-config.json file). Never thought I had to explicitly declare for reflection a pretty old (and possibly obsolete) class like java.util.Date. But as I said in my question java.util.Date and j

RE: salesforce connection with camel

2021-04-07 Thread Ajmera, Hemang C
Hi For login-url please try using https://login.salesforce.com for production environment or https://test.salesforce.com No need to add anything extra for oauth... Salesforce component will take care of those. Thanks and Regards, Hemang Ajmera -Original Message- From: WEIQUAN YUAN

Re: Copy over state for multicast eip

2021-04-07 Thread Claus Ibsen
Hi I suggest if you can put together a small example / unit test or something that demonstrates what you are doing and why you need to do custom error handling. And put it on github or in a JIRA ticket. On Tue, Apr 6, 2021 at 10:13 AM Benjamin Graf wrote: > > Hi together, > > https://issues.apa

Re: camel-quarkus-dozer. Error when running native executable

2021-04-07 Thread Alexandre Gallice
Hi Federico, From the logs, it looks that "java.util.Date" class should be registered for reflection. There are multiple solutions for such cases as described here: https://quarkus.io/guides/writing-native-applications-tips#registering-for-reflection . So, I would first try to register the cl

camel-quarkus-dozer. Error when running native executable

2021-04-07 Thread Federico Sajeva
Hello there, I have an application based on camel-quarkus that (1) split xml payloads using StAX and JAXB, (2) use Dozer to map each record to domain objects annotated with protostream and (3) put each domain object into an Infinispan remote cache. JAXB classes are generated through xjc from a sch