> -----Original Message----- > The problem is with server own SoapFaults and my SoapFaults... > It s possible for me not to send SoapFault in my daemon... > The typical problem is a query error... > handle() never give me the hand... > I use ob_start() to catch the soap response to redirect it on the > client socket. > It work fine... > But if a soap fault is send, my code is never executed... and the > soapfault is printed on stdout!!! The way I solved such a problem (for logging and db transaction purposes) is to throw an Exception instead of a soapFault. Try{server->handle()}catch(Exception $e){do the logging and return a manual soap fault with the same message as the exception} Regards, David -- PHP Soap Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php