thank you for the reply...
so if i understand the code in soap-sign-encrypt.php correctly then this part:
wsdl = <wsdl location>;
$sc = new mySoap($wsdl);
try {
$out = $sc->callmethod(1);
var_dump($out);
} catch (SoapFault $fault) {
var_dump($fault);
}
i can replace with:
$cert = '/path/to/ssl/cert.pem';
$wsdl = '
https://endpoint.com/Service.asmx?WSDL';
$client_options = array( 'trace' => TRUE ,'exceptions' => TRUE ,'cache_wsdl' => WSDL_CACHE_NONE ,'local_cert' => $cert );
$param = array( "wsdl_paramter" => "value");
$sc = new mySoap($wsdl, $client_options);
try {
$out = $sc->wsdlFunctionToCall($param);
var_dump($out);
} catch (SoapFault $fault) {
var_dump($fault);
}
and this should be it, correct?
thanks...