How to use PHP5 SoapClient::SoapClient() with clie

2019-08-12 16:52发布

问题:

I need to use PHP's SoapClient with myfile-ca.crt. How can I tell SoapClient constructor to work with client certificate (crt file) ?

I am experienced with php SoapClient, but I never needed to work with secure soap client.

Thanks for any help

回答1:

When constructing your SoapClient, you can pass in a configuration array as the second parameter. This array allows the options local_cert. The local_cert option should point to the certificate file (in my experience the absolute path was needed to get it to work).

$wsdl = "service.wsdl";
$cert = "c:\secure_cert\webservice.pem";
$client = new SoapClient($wsdl, array('local_cert' => $cert);

See also the examples at the SoapClient manual page

Note: I've always been given .pem files; not sure if .crt is the same / works the same...?