downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

use_soap_error_handler> <SOAP Funções
Last updated: Fri, 13 Nov 2009

view this page in

is_soap_fault

(Unknown)

is_soap_faultChecks if a SOAP call has failed

Descrição

bool is_soap_fault ( mixed $object )

This function is useful to check if the SOAP call failed, but without using exceptions. To use it, create a SoapClient object with the exceptions option set to zero or FALSE. In this case, the SOAP method will return a special SoapFault object which encapsulates the fault details (faultcode, faultstring, faultactor and faultdetails).

If exceptions is not set then SOAP call will throw an exception on error. is_soap_fault() checks if the given parameter is a SoapFault object.

Parâmetros

object

The object to test.

Valor Retornado

This will return TRUE on error, and FALSE otherwise.

Exemplos

Exemplo #1 is_soap_fault() example

<?php
$client 
= new SoapClient("some.wsdl", array('exceptions' => 0));
$result $client->SomeFunction();
if (
is_soap_fault($result)) {
    
trigger_error("SOAP Fault: (faultcode: {$result->faultcode}, faultstring: {$result->faultstring})"E_USER_ERROR);
}
?>

Exemplo #2 SOAP's standard method for error reporting is exceptions

<?php
try {
    
$client = new SoapClient("some.wsdl");
    
$result $client->SomeFunction(/* ... */);
} catch (
SoapFault $fault) {
    
trigger_error("SOAP Fault: (faultcode: {$fault->faultcode}, faultstring: {$fault->faultstring})"E_USER_ERROR);
}
?>

Veja Também



add a note add a note User Contributed Notes
is_soap_fault
There are no user contributed notes for this page.

use_soap_error_handler> <SOAP Funções
Last updated: Fri, 13 Nov 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites