Re: [SOAP] Fatal error: Uncaught SoapFault exception:
[email protected] (Al Baker)
| Newsgroups | php.soap |
|---|---|
| Message-ID | <1191746558.8885.11.camel@localhost> |
When you use a SoapClient, you can catch a SoapFault exception, e.g.
try {
$client->execute($parameters);
} catch (SoapFault $exception) {
// handle the fault
}
If this is a .NET web service, you may have to look at how you are using
the web service, there are some notes on the PHP documentation:
http://us3.php.net/manual/en/function.soap-soapclient-soapcall.php
Regards,
Al
On Fri, 2007-10-05 at 06:45 -0700, sublimenal wrote:
> Hello, I am wondering if I can get a bit of help here. I am trying to query a
> SOAP server and keep getting this error.
>
> http://bbb.dlg360.com/soap.php
>
> I linked the wsdl and all operations in the file so you can view, I cant
> figure this out for the life of me and any help would be appreciated. Thanks
> --
> View this message in context: http://www.nabble.com/Fatal-error%3A-Uncaught-SoapFault-exception%3A-tf4575384.html#a13059792
> Sent from the Php - Soap mailing list archive at Nabble.com.
>