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
Cool GuyCool Guy 

SOAP WebService Integration Certificate Issue

Hi, 

We are doing an Integration using SOAP services.

For that, third party gave us SSL certificate in .pfx format along with password. I have doubt that how to use that certificate in our Request.  I opened that certificate and used the content of it in my code and I got ' No Certificate found' Error. How can I resolve this issue.  May I know the Procedure to Integrate using SOAP services.


Best Answer chosen by Cool Guy
sunny522sunny522
Hi Cool Guy,
        Follow the links below.
        https://www.salesforce.com/us/developer/docs/apexcode/Content/apex_callouts_client_certs_soap.htm
       https://developer.salesforce.com/forums?id=906F0000000904dIAA

when we have certificate as .pfx file we need to generate base64 code of that file .you can generate that by following second link.once you get that code follow the first link to include certificate details in soap integration.

if this provides you with useful information and if this is what you where looking for then please mark it as a solution for other benefits.

All Answers

Ashish_SFDCAshish_SFDC
Hi , 


See the documentation below,

Using Certificates with SOAP Services

https://www.salesforce.com/us/developer/docs/apexcode/Content/apex_callouts_client_certs_soap.htm


Regards,
Ashish
sunny522sunny522
Hi Cool Guy,
        Follow the links below.
        https://www.salesforce.com/us/developer/docs/apexcode/Content/apex_callouts_client_certs_soap.htm
       https://developer.salesforce.com/forums?id=906F0000000904dIAA

when we have certificate as .pfx file we need to generate base64 code of that file .you can generate that by following second link.once you get that code follow the first link to include certificate details in soap integration.

if this provides you with useful information and if this is what you where looking for then please mark it as a solution for other benefits.
This was selected as the best answer