Accreditamento SDICoop: configurazione SSL su Apache

Buongiorno Francesco,
anche io mi trovo esattamente nella tua condizione:

$certspath=“./cartella-certificati/”; //CA file
$clientCertFile = “SDI-xxxxxxxxxxxxxxxxxx-clientpfx.pem”;
$wsdl=“https://testservizi.fatturapa.it/SdI2AccoglienzaWeb/SdIRiceviFile_service/WEB-INF/wsdl/SdIRiceviFile_v1.0.wsdl 3”;
$url = ‘https://testservizi.fatturapa.it/ricevi_file’;
$options = array(
“location”=>$url,
‘local_cert’=>$certspath.$clientCertFile,
//‘style’=>SOAP_LITERAL,
//‘use’=>SOAP_ENCODED,
//‘soap_version’=>SOAP_1_1,
‘cache_wsdl’=>WSDL_CACHE_NONE,
‘connection_timeout’=>15,
//‘trace’=>true,
//‘encoding’=>‘UTF-8’,
//‘exceptions’=>true,
);
$client = new MTOMSoapClient($wsdl ,$options );

Tuttavia, nel mio test in php continuo sempre ad ottenere l’eccezione SOAP
SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://testservizi.fatturapa.it/SdI2AccoglienzaWeb/SdIRiceviFile_service/WEB-INF/wsdl/SdIRiceviFile_v1.0.wsdl' : failed to load external entity

Tu sei riuscito a risolvere il problema?

Grazie.