如何捕获SOAP错误

时间:2014-07-03 07:40:19

标签: php soap

我正在运行SOAPUI中的SOAP调用

enter image description here

代码:

$client = new SoapClient($url, array('exceptions' => true)); 
try {
    $a = $client->method($app, $key, array(
        'id' => 1,
    ));  
} catch (SoapFault $soapFault) {
    die('caught!');
}

代码永远不会在catch块中结束,我无法通过method()调用。我该如何正确处理这个错误?

0 个答案:

没有答案