I'm trying to set up an integration for the first time. I'm getting an error stating that I need to upload the external server's SSL certificate to the list of Trusted Server Certificates. I found the SSL information appian requires (see below), but I don't know how I'm supposed to convert it from TXT to PEM. Can someone help? Thanks
Discussion posts and replies are publicly visible
What is TXT means. I know we have these format pfx,jks,pem,crt,cert but not sure on TXT
Any how You can use openssl to covert it to .pem
1.Download openssl and install it in your windows
2.go to command prompt and go to openssl directory where you installed
3.Run following commands to convert ( which is for pfx certificates)
openssl pkcs12 -in AppianTS.pfx -out AppianTS.pem -clcerts
or for .cer to pem
openssl x509 -in pd.test.cer -out test .pem -outform PEM
There are lot of examples available online please do some search converting to pem using openssl