SOAP WSDL error
I'm trying to call a webservice in php. With php 5.3.0 it works fine but it must work with 5.2.0
Now i'm getting this error when I execute my webservice: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from https://xx.xx.xx.xx:port/webdialer/services/WebdialerSoapService?wsdl'
I've searched the net allready, and I found that it could be a bug. I did what they suggested but it stille won't work.
This is my code:
function MakeCall($linenumber, $destinationNumber, $deviceName){
/*try {
if(!@file_get_contents($wsdl)) {
throw new SoapFault('Server', 'No WSDL found at ' . $wsdl);
}*/
try{
$soap = new SoapClient("https://xx.xx.xx.xx:port/webdialer/services/WebdialerSoapService?wsdl",array(
"uri" => "urn:WebdialerSoap",
"trace" => 1,
"exceptions" => 1));
$rs2 = $soap->makeCallSoap(
array(
开发者_如何学JAVA "userID"=>'xx',
"password"=>'xx'
),
$destinationNumber, // Destination number to be called
array(
'user'=>'user',
'deviceName'=>$deviceName,
'lineNumber'=>$linenumber,
'supportEM'=>false,
'locale'=>'English',
'dontAutoClose'=>true,
'dontShowCallConf'=>true
)
);
return $rs2;
} catch(SoapFault $e) {
echo $e;
}
}
What am I doing wrong?
Do you have openssl enabled in php.ini for the 5.2.0 installation?
精彩评论