On Fri, Mar 26, 2010 at 2:08 PM, dmitrybelyakov <[email protected]> wrote:
>
>
> till wrote:
>>
>> On Fri, Mar 26, 2010 at 1:25 PM, dmitrybelyakov <[email protected]>
>> wrote:
>>
>> Can you explain how the "uncatchable" fatal error looks like? I seem
>> to be missing the relevant email.
>>
>> Till
>>
>>
>
> Sure - it looks like this:
>
> Fatal error: SOAP-ERROR: Parsing WSDL: Couldn't load from 'BadWsdlAddress' :
> failed to load external entity "BadWsdlAddress"
>
> Dmitry.
Your try/catch is not enough then.
try {
$wsdl = 'badaddress';
$client = new Zend_Soap_Client($wsdl);
$client->test();
} catch (Exception $e) {
var_dump($e); // your SoapFault
exit;
}
Till