This function seems to disable/enable automatic error reporting through SOAP. Use it to prevent user "on the other side" from seeing internal errors of your application.
Sometimes it is better to send no answer at all than to inform users that your application has e.g. parse errors.
Usage:
// disable error reporting
use_soap_error_handler(false);
// enable error reporting
use_soap_error_handler(true);
Default state of soap error handler is ENABLED.
It seems that the best practice is to disable it in constructor of your SOAP request handling class and enable in destructor.
For some situations, you may want to create your own error handling function instead (see set_error_handler and set_exception_handler) and throw custom SoapFaults with info like: "We have technical difficulties at the moment. Sorry!".
use_soap_error_handler
(Unknown)
use_soap_error_handler — Set whether to use the SOAP error handler
Descrição
bool use_soap_error_handler
([ bool $handler
] )
This function sets whether or not to use the SOAP error handler in the SOAP server. It will return the previous value. If set to TRUE, details of errors in a SoapServer application will be sent to the clients. If FALSE, no information will be sent.
Parâmetros
- handler
-
Set to TRUE to send error details to clients.
Valor Retornado
Retorna TRUE em caso de sucesso ou FALSE em falhas.
Veja Também
- set_error_handler() - Define uma função do usuário para manipular erros
- set_exception_handler() - Define uma função definida pelo usuário para tratamento de exceções
use_soap_error_handler
msynak dot no dot spam dot please at wp dot pl
02-Mar-2006 02:45
02-Mar-2006 02:45
