Re: salesforce connection with camel

2021-04-08 Thread WEIQUAN YUAN
It is proxy issue, now I moved application out of proxy env , the problem fixed. but I got another error how to set grant type in the camel salesforce configuration? I didn't see that option for grant_type Caused by: org.apache.camel.component.salesforce.api.SalesforceException:

RE: [External] Re: Looking for a transactional solution

2021-04-08 Thread Brenneis, Steve
Thank you for your answer George. We are using the XML DSL. When we try something like this: https://clicktime.symantec.com/3NL8rtk3CaQa9bJreF5FDn7Vc?u=https%3A%2F%2Fcamel.apache.org%2Fcomponents%2F3.4.x%2Feips%2Ftransactional-client.html For example.

Re: [External] Re: Looking for a transactional solution

2021-04-08 Thread Zheng Feng
Hi Brenneis, Have you ever tried to set "transacted=true" with the incoming queue ? Just like > > > > > > > > > > > > > > >

Re: Scheduled polling with azure-storage-blob consumer?

2021-04-08 Thread Claus Ibsen
Hi I created a ticket https://issues.apache.org/jira/browse/CAMEL-16474 On Thu, Apr 8, 2021 at 2:06 PM Claus Ibsen wrote: > Hi > > Yes this is wrong, you are welcome to create a JIRA. > Its the BlobEndpoint that should extend a scheduled endpoint instead of > default to offer those

Re: [External] Re: Looking for a transactional solution

2021-04-08 Thread George Daswani
Hello Steve, It seems to work for me, let me know if you want to see a sample maven project for it. Are you sure that your "jms" component is configured correctly and has a transactionManager set and has transacted = true? The sample project I created has a scheduled route that

ConcurrentModificationException while calling REST service using camel-cxf component

2021-04-08 Thread Anand Kumar
Hi Team We are getting below error while calling REST service using camel-cxf component java.lang.RuntimeException: java.util.ConcurrentModificationException at org.apache.cxf.jaxrs.client.JAXRSClientFactoryBean.createWebClient(JAXRSClientFactoryBean.java:233) at

Re: Scheduled polling with azure-storage-blob consumer?

2021-04-08 Thread Claus Ibsen
Hi Yes this is wrong, you are welcome to create a JIRA. Its the BlobEndpoint that should extend a scheduled endpoint instead of default to offer those configurations On Thu, Apr 8, 2021 at 1:55 PM wrote: > Hi, > > > > I want to use the azure-storage-blob consumer to download blobs from an >

Rép. : Scheduled polling with azure-storage-blob consumer?

2021-04-08 Thread Daniel Langevin
Hi, you can use CRONSCHEDULEDROUTEPOLICY like this ... ... hope it's help Daniel Langevin Direction de l’assistance et des technologies Direction des ressources informationnelles et matérielles Société d’habitation du Québec Édifice Marie-Guyart 1054, rue

Scheduled polling with azure-storage-blob consumer?

2021-04-08 Thread Lukas.Angerer
Hi, I want to use the azure-storage-blob consumer to download blobs from an azure storage. Very basic route for testing: from(“azure-storage-blob:/myContainer?regex=test/azure_test.*.csv”) .to("${body}); This works just fine. However it I can’t figure out how I can set the parameters to control

Re: ConcurrentModificationException while calling REST service using camel-cxf component

2021-04-08 Thread Claus Ibsen
What Camel and CXF version are you using? On Thu, Apr 8, 2021 at 11:53 AM Anand Kumar wrote: > > Hi Team > > > We are getting below error while calling REST service using camel-cxf > component > > java.lang.RuntimeException: java.util.ConcurrentModificationException > at >

Re: Scheduled polling with azure-storage-blob consumer?

2021-04-08 Thread Andrea Cosentino
Yeah, it looks wrong. Please open an issue about this. For the moment, you may think about using a pollEnrich: from("timer:tick?period=1000") .pollEnrich("azure-storage-blob:/myContainer?regex=test/azure_test.*.csv") .to("") Il giorno gio 8 apr 2021 alle ore 13:55 ha scritto: > Hi, >

Access camel internal cache

2021-04-08 Thread Gv, Shivakumar
Hi Team, How can I access camel internal cache to fetch/store key value pairs .which I have to reload every 24 hrs . Thanks, Shiva NOTICE: All information in and attached to the e-mails below may be proprietary, confidential, privileged and otherwise protected

Re: Copy over state for multicast eip

2021-04-08 Thread Claus Ibsen
Hi Ah okay so it's not the "too much" is copied over. But the fact before the rollback_last was stored as property, which had 3 states: null, true, false And now its optimized into a simple boolean that has: true, false On Wed, Apr 7, 2021 at 7:15 PM Benjamin Graf wrote: > > Hi Clause, > >

Re: ConcurrentModificationException while calling REST service using camel-cxf component

2021-04-08 Thread Anand Kumar
HI Claus We are using 2.23.2 version for camel and cxf Regards Anand Kumar On Thu, Apr 8, 2021 at 5:38 PM Claus Ibsen wrote: > What Camel and CXF version are you using? > > On Thu, Apr 8, 2021 at 11:53 AM Anand Kumar > wrote: > > > > Hi Team > > > > > > We are getting below error while