mdimas opened a new issue, #1433:
URL: https://github.com/apache/camel-kafka-connector/issues/1433
Given the following configuration options:
```
"name":"contacts-from-salesforce",
"connector.class":"org.apache.camel.kafkaconnector.salesforcesource.CamelSalesforcesourceSourceConnector",
"tasks.max":1,
"key.converter":"org.apache.kafka.connect.storage.StringConverter",
"value.converter":"org.apache.kafka.connect.storage.StringConverter",
"camel.kamelet.salesforce-source.query":"SELECT Id, Name, Email, Phone
FROM Contact",
"camel.kamelet.salesforce-source.topicName":"salesforce-contacts",
"camel.kamelet.salesforce-source.loginUrl":"https://my--sandbox.my.salesforce.com",
"camel.kamelet.salesforce-source.notifyForFields":"ALL",
"camel.kamelet.salesforce-source.clientId":"CLIENT_ID",
"camel.kamelet.salesforce-source.clientSecret":"CLIENT_SECRET",
"camel.kamelet.salesforce-source.userName":"USER_NAME",
"camel.kamelet.salesforce-source.password":"PASSWORD",
```
the connector is getting this error on startup:
```
Caused by: org.apache.camel.ResolveEndpointFailedException: Failed to
resolve endpoint:
local-salesforce-6://salesforce-contacts?clientId=CLIENT_ID&clientSecret=xxxxxx&loginUrl=https%3A%2F%my--sandbox.my.salesforce.com¬ifyForFields=ALL¬ifyForOperationCreate=true¬ifyForOperationDelete=false¬ifyForOperationUndelete=false¬ifyForOperationUpdate=false&password=xxxxxx&sObjectQuery=SELECT+Id%2C+Name%2C+Email%2C+Phone+FROM+Contact&updateTopic=true&userName=USER_NAME
due to: There are 5 parameters that couldn't be set on the endpoint. Check the
uri if the parameters are spelt correctly and that they are properties of the
endpoint. Unknown parameters=[{clientId=CLIENT_ID, clientSecret=CLIENT_SECRET,
loginUrl=https://my--sandbox.my.salesforce.com, password=PASSWORD,
userName=USER_NAME}]
at
org.apache.camel.support.DefaultComponent.validateParameters(DefaultComponent.java:299)
at
org.apache.camel.support.DefaultComponent.createEndpoint(DefaultComponent.java:192)
at
org.apache.camel.impl.engine.AbstractCamelContext.doGetEndpoint(AbstractCamelContext.java:934)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]