This function is
EXPERIMENTAL. That means, that the behaviour of this
function, the function name, in concreto ANYTHING documented here can
change in a future release of this package WITHOUT NOTICE. Be warned, and
use this function at your own risk.
Return TRUE if an error occured during the last SOAP method call.
<?php
//simple example to check soap extension client is working..
dl('soap.so');
$soapclient = new SoapObject("http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl");
$ret = $soapclient->sillytest();
var_dump($soapclient->__isFault());
?>