[
https://issues.apache.org/jira/browse/CAMEL-14023?focusedWorklogId=324395&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-324395
]
ASF GitHub Bot logged work on CAMEL-14023:
------------------------------------------
Author: ASF GitHub Bot
Created on: 07/Oct/19 13:47
Start Date: 07/Oct/19 13:47
Worklog Time Spent: 10m
Work Description: JiriOndrusek commented on pull request #3225:
[CAMEL-14023] Camel-salesforce-maven-plugin generate fails on IBM jdk
URL: https://github.com/apache/camel/pull/3225
Issue: https://issues.apache.org/jira/browse/CAMEL-14023
Jetty client (for security reasons) disables all ciphers, which starts with
"SSL_".
In IBM java it removes all ciphers, because every cipher starts with SSL,
even ciphers for TLS 1.2
(see issue reported on jetty
https://github.com/eclipse/jetty.project/issues/2921).
This fix changes excluded ciphers, for IBM jdk only, to contain also SSL_*
ones.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 324395)
Remaining Estimate: 0h
Time Spent: 10m
> Camel-salesforce-maven-plugin generate fails on IBM jdk
> -------------------------------------------------------
>
> Key: CAMEL-14023
> URL: https://issues.apache.org/jira/browse/CAMEL-14023
> Project: Camel
> Issue Type: Bug
> Components: camel-salesforce
> Affects Versions: 2.24.2, 3.0.0.RC1
> Reporter: Jiri Ondrusek
> Assignee: Jiri Ondrusek
> Priority: Major
> Fix For: 3.0.0
>
> Time Spent: 10m
> Remaining Estimate: 0h
>
> Run camel-salesforce-maven-plugin goal generate om ibm java
> {code}
> <plugin>
> <groupId>org.apache.camel.maven</groupId>
> <artifactId>camel-salesforce-maven-plugin</artifactId>
> <version>${version.camel}</version>
> <configuration>
> <clientId>${camelSalesforce.clientId}</clientId>
> <clientSecret>${camelSalesforce.clientSecret}</clientSecret>
> <userName>${camelSalesforce.userName}</userName>
> <password>${camelSalesforce.password}</password>
> <loginUrl>${camelSalesforce.loginUrl}</loginUrl>
> <version>${camelSalesforce.apiVersion}</version>
> <includes>
> <include>Account</include>
> </includes>
> </configuration>
> <executions>
> <execution>
> <id>salesforce-objects</id>
> <goals>
> <goal>generate</goal>
> </goals>
> </execution>
> </executions>
> </plugin>
> {code}
> Execution will fail with:
> {code}[ERROR] Failed to execute goal
> org.apache.camel.maven:camel-salesforce-maven-plugin:2.25.0-SNAPSHOT:generate
> (default) on project camel-salesforce: Error connecting to Salesforce:
> Salesforce login error Unexpected login error: No negotiable cipher suite ->
> [Help 1]{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)