PHP 8.5.0 Alpha 4 available for testing

Voting

: min(seven, one)?
(Example: nine)

The Note You're Voting On

albert at jool dot nl
18 years ago
A note for ppl who use certificates with SOAP under a Windows config: it seems to be required to give the full path to the certificate file - and don't prepend 'file://' :

<?php

$wsdl
= "test.wsdl";
$local_cert = "c:\htdocs\mycert.pem";
$passphrase = "xyz";

$client = new SoapClient($wsdl, array('local_cert' => $local_cert, 'passphrase' => $passphrase);

?>

<< Back to user notes page

To Top