S
SeesamMartin
Guest
Problem is that Progress does not recognize SSL certificate of webservice you would like to access, right? Having had nightmares with it like live critical service called from Progress suddenly stopped working due to certificate change on the other end I think that I can recommend typical actions. First thing is most probably you imported wrong certificate. You need usually only root cert but not always is needed root cert visible on certificate path. Best approach is to google the same ID you have in error, in this case "2e5ac55d.0". Doing that I found link to page: www.identrust.com/.../root-download-x3.html Then I did create a text file, put in first line like: -----BEGIN CERTIFICATE----- copied certificate contents there and then entered last line like: -----END CERTIFICATE----- Saved file as .cer and run command from ProEnv: proenv>certutil -import c:\certs\identrust.cer Got reply (note it has to be right, otherwise you got wrong cert): Importing trusted certificate to alias name: 2e5ac55d Also note that you need to import it everywhere your P or R code runs - on developer workstation, on Appserver on each client if you call it from GUI... Reason we use only Appserver to call services.
Continue reading...
Continue reading...