function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Anil ChunduAnil Chundu 

Could not connect to salesforce.com.javax.net.sslhandshakeexception: Recieved fatal alert:handshake failure

Hi all,
we have salesforce castiron integration. I am new to castiron.

Now i have to change the Outgoing integrations field mappings.  So i am trying to add the new fields in query and validating it. Then i am getting error ssl handshake failure.

I tested the salesforce connection, it is also failed with same message displayed as follows.Change the Outgoing integrations.

Please guide me, this is an urgent issue needs to be fixed and change the field mappings in orchestrations.

If you are not clear with my question then we can connect with webex meeting or some call, much appreciated your help.

Thanks in advance

 
Amit Chaudhary 8Amit Chaudhary 8
https://developer.salesforce.com/forums/ForumsMain?id=906F0000000BTXFIA4
The ".cer" need to be imported into Apex Data Loader 19.0\_jvm\lib\security\cacerts keystore. once it is imported. it works excellent.

Please check below post. I hope that will help u
https://developer.salesforce.com/forums/?id=906F00000008yyGIAQ

This simply means that the web server or the URL you are connecting to does not have a valid certificate from an authorized CA. But however, being a programmer you would want to find out the alternative way to solve this issue.
What you need to do is to import the server certificate and install it in your JDK's keystore.

Just follow these steps and you will be able to get rid of that error.
1. First of all you copy the URL that you are connecting to and paste it in your browser. Let us say you are using IE. Just paste the url in the address bar and press enter.
2. You will now probably see a dialog box warning you about the certificate. Now click on the 'View Certificate' and install the certificate. Ignore any warning messages.
3. Now that the server certificate is installed in your computer, your browser will not warn you when you visit the same site again

Please check below post also
https://developer.salesforce.com/forums/?id=906F00000008pQyIAI
https://blogs.oracle.com/gc/entry/unable_to_find_valid_certification


Please let us know if this will help u