Hi, on Real Studio you do it like this:
d.OptionSSLVerifyHost = 2 // verify server d.OptionSSLVerifyPeer = 1 // proofs certificate is authentic d.OptionCAInfo = cacert.UnixpathMBS where cacert is the cacert.pem file from curl website. In Filemaker: MBS( "CURL.SetOptionCAInfo"; $curl; $cacertPath ) MBS( "CURL.SetOptionSSLVerifyHost"; $curl; 2 ) MBS( "CURL.SetOptionSSLVerifyPeer"; $curl; 1 ) Greetings Christian -- Read our blog about news on our plugins: http://www.mbsplugins.de/ _______________________________________________ Mbsplugins_monkeybreadsoftware.info mailing list [email protected] https://ml01.ispgateway.de/mailman/listinfo/mbsplugins_monkeybreadsoftware.info
