Re: camel-salesforce

2020-04-20 Thread Reji Mathews
Create a java keystore file, import the certificate into it and pass the file along as jvm option. Refer https://stackoverflow.com/questions/8980364/how-do-i-find-out-what-keystore-my-jvm-is-using where author shows how to pass a keystore as jvm option. By default, it tries to pick up the cacerts

camel-salesforce

2020-04-20 Thread Gerald Kallas
Dear community, while connecting to a salesforce instance I'm getting an error java.lang.RuntimeException: org.apache.camel.component.salesforce.api.SalesforceException: Unexpected login error: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to

Re: Camel Quarkus toD with dynamic values?

2020-04-20 Thread Claus Ibsen
Hi What version of Camel are you using? I think we had a bug in endpoint-dsl with {{ }} placeholders, that only has been fixed in the upcoming 3.3 release. And it may work in older Camel like 3.1.0. Or dont use the endpoint dsl and regular camel uri strings On Mon, Apr 20, 2020 at 3:11 PM Mikael

Re: Camel Quarkus toD with dynamic values?

2020-04-20 Thread Rafael Soares
Try to use the "URI STRING FORMATTING" *toF()* and *fromF()*... from("direct:start").*toF*("file://%s?fileName=%s", path, name); *fromF*( "file://%s?include=%s", path, pattern).toF("mock:%s", result); Also, inject your properties using the Quarkus Microprofile @ConfigProperty

Camel Quarkus toD with dynamic values?

2020-04-20 Thread Mikael Andersson Wigander
Hi trying to convert a small Camel application to Quarkus but fails on this: from(timer("{{esma.download.timer}}").repeatCount(1)) .log("{{esma.download.url}}") .toD(https("{{esma.download.url}}")) esma: download: url :