Iladarsda
Iladarsda

Reputation: 10696

Handling web service errors within PHP

I have some simple SOAP client to get data from WSDL and display it.

<?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, e.g. 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);        



?>

Everything works fine - when WSDL works fine.

But, when WSDL fails( Runtime Error on the server) my site is throwing hundreds of warnings all at line 152 which is:

$parser = simplexml_load_string($response2);

How to detect that WSDL have returned invalid XML (html error msg) and display simple error msg on this base?

Upvotes: 0

Views: 926

Answers (2)

Wesley van Opdorp
Wesley van Opdorp

Reputation: 14941

Check the tip on the documentation page.

Tip Use libxml_use_internal_errors() to suppress all XML errors, and libxml_get_errors() to iterate over them afterwards.

Here are some examples.


UPDATE:

For this case example would look like that:

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
}

Upvotes: 2

yvan
yvan

Reputation: 958

Simply by checking the header (ContentType) or simpler check the $response2 if it's starts with <?xml .

Upvotes: 1

Related Questions