Connecting Integration Designer to a Secure Process Center
If you would like to connect your IBM Integration Designer to a secured Process Center (over HTTPS). You need to import the server certificate into your Integration Designer cacerts file.
First, open the Process Center you want to connect to in a browser and then export that certificate so that you can save it locally. For example, in Internet Explorer, click on the icon of the lock at the end of the url and then click on View Certificates. From here, you can click on the Details tab and then select Copy to a File. The certificate export wizard opens and you can save the certificate.

Once you have the certificate saved locally, you can now import it into the Integration Designer cacerts file. From a command prompt, navigate to you IID_INSTALL_ROOTjdkbin and execute:
keytool.exe -import -v -file “PATH TO THE CERT YOU SAVED” -alias ALIASNAME -keystore “IID_INSTALL_ROOTjdkjrelibsecuritycacerts”
where:
IID_INSTALL_ROOT = the path that your IID is installed to (i.e. C:IBMIntegrationDesignerv7.5.1),
PATH TO THE CERT YOU SAVED = the full path to where you saved the certificate from the export (if the path has spaces in it, then put the whole path in double quotes
ALIASNAME = name you want to store the cetificate as in the cacerts file
While this script is running, it will prompt you for a password, which the default password is changeit. It will then ask you a yes/no question if you want to import the certificate you provided for import. Type yes and you are done.
You will need to restart IID to connect to your secure Process Center over HTTPS.