PHP-Code:
$opts = array(
'ssl'=>array(
'CN_match' => 'testcert',
'allow_self_signed' => true,
'verify_peer' => false,
'local_cert' => '/srv/www/htdocs/certFile.crt',
)
);
$context = stream_context_create($opts);
$fp = fopen('https://path.tld/wsdl', 'r', false, $context);
print_r($fp);
fclose($fp);
Ziel ist einfach nur an die wsdl zu kommen.
Danke im voraus