Обработка ошибок веб-службы в PHP

У меня есть простой клиент SOAP для получения данных из WSDL и отображения его.

<?php //Data, connection, auth $dataFromTheForm = $_POST['fieldName']; // request data from the form $soapUrl = "https://connecting.website.com/soap.asmx?op=DoSomething"; // asmx URL of WSDL $soapUser = "username"; // username $soapPassword = "password; // password // xml post structure $xml_post_string = '<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetItemPrice xmlns="http://connecting.website.com/WSDL_Service"> // xmlns value to be set to your's WSDL URL <PRICE>'.$dataFromTheForm.'</PRICE> // data from the form, eg some ID number </GetItemPrice > </soap:Body> </soap:Envelope>'; $headers = array( "Content-type: text/xml;charset=\"utf-8\"", "Accept: text/xml", "Cache-Control: no-cache", "Pragma: no-cache", "SOAPAction: http://connecting.website.com/WSDL_Service/GetPrice", // your op URL "Content-length: ".strlen($xml_post_string), ); $url = $soapUrl; // PHP cURL for https connection with auth $ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_USERPWD, $soapUser.":".$soapPassword); // username and password - declared at the top of the doc curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY); curl_setopt($ch, CURLOPT_TIMEOUT, 10); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $soapUrl); // asmx URL of WSDL - declared at the top of the doc curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); // converting $response = curl_exec($ch); curl_close($ch); // converting $response1 = str_replace("<soap:Body>","",$response); $response2 = str_replace("</soap:Body>","",$response1); // convertingc to XML $parser = simplexml_load_string($response2); ?> 

Все работает отлично – когда WSDL работает нормально.

Но, когда WSDL терпит неудачу (Runtime Error на сервере), мой сайт бросает сотни предупреждений по строке 152, которая:

$parser = simplexml_load_string($response2);

Как обнаружить, что WSDL вернули неверный XML (html error msg) и отобразили простую ошибку на этой базе?

Проверьте отзыв на странице документации.

Совет Используйте libxml_use_internal_errors () для подавления всех ошибок XML и libxml_get_errors (), чтобы потом перебирать их.

Вот несколько примеров.


ОБНОВИТЬ:

В этом случае пример будет выглядеть так:

 libxml_use_internal_errors(true); //enable error handling $parser = simplexml_load_string($output2); if(!$parser){ // if $parser is not valid XML response echo '<p>Sorry. This service is currently unavailable. Please try again later.</p>'; } else { //if $parser is valid XML response, do something } 

Просто проверив заголовок (ContentType) или попробуйте проверить $ response2, если он начинается с <?xml .