如何在php中解析soap响应


How to parse a soap response in php

我需要帮助解析从调用web服务获得的PHP中的XML响应。解析器的类型其实并不重要(DOM/SSAX/ETC.),但是请注意,XML文件并不长。(最多约50行)。我尝试使用simplexml_load_string,但无法从中提取数据。我认为这与soap或信封名称空间有关。

回应:

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"` xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<ProcessRequestResponse xmlns="http://xxxxxxxxx.yyy">
<ProcessRequestResult>
<OutputData>
&lt;?xml version="1.0" encoding="utf-8" ?&gt;
&lt;DATA&gt;
&lt;RECORD ID="1"&gt;&lt;COURSE_ID&gt;44226&lt;/COURSE_ID&gt;&lt;COURSE_NUMBER&gt;1234567-0&lt;/COURSE_NUMBER&gt;&lt;/RECORD&gt;
&lt;RECORD ID="2"&gt;&lt;COURSE_ID&gt;44227&lt;/COURSE_ID&gt;&lt;COURSE_NUMBER&gt;1234598-0&lt;/COURSE_NUMBER&gt;&lt;/RECORD&gt;
&lt;/DATA&gt;
</OutputData>
<ErrorMessage />
<Result>Success</Result>
</ProcessRequestResult>
</ProcessRequestResponse>
</soap:Body>
</soap:Envelope>

这是我从服务器上得到的EXACT响应。

请帮我解析这个xml!我此刻真的很失落。

编辑:修复soap主体,以具有Record结束标记。

我是如何创建eway soap请求并获得eway soap结果的,这可能会帮助其他人!

<?php
    $URL = "https://www.eway.com.au/gateway/rebill/test/manageRebill_test.asmx?wsdl";
                $option = array("trace"=>true);
                $client = new SOAPClient($URL, $option);
                $functions = $client->__getFunctions();
        $headeroptions=array('eWAYCustomerID'=>"87654321",'Username'=>"test@eway.com.au","Password"=>"test123");
                $header = new SOAPHeader('http://www.eway.com.au/gateway/rebill/manageRebill', 'eWAYHeader',$headeroptions);
                $bodyoptions = array(
                                "CreateRebillCustomer" => array(
                                    "customerTitle" => "Mr",                   
                                      "customerFirstName"=>"Muhammad",
                                      "customerLastName"=>"Shahzad",
                                      "customerAddress"=>"cust ome rAddress",
                                      "customerSuburb"=>"customer Suburb",
                                      "customerState"=>"ACT",
                                      "customerCompany"=>"customer Company",
                                      "customerPostCode"=>"2345",
                                      "customerCountry"=>">Australia",
                                      "customerEmail"=>"test@gamil.com",
                                      "customerFax"=>"0298989898",
                                      "customerPhone1"=>"0297979797",
                                      "customerPhone2"=>"0297979797",
                                      "customerRef"=>"Ref123",
                                      "customerJobDesc"=>"customerJobDesc",
                                      "customerComments"=>"customerComments",                    
                                      "customerURL" => "http://www.acme.com.au"
                                   )
                                );
                    try{
                        $response = $client->__soapCall("CreateRebillCustomer", $bodyoptions,NULL,$header,$outputHeader);
                        //echo $client->__getLastRequest();
                        //$response = $client->CreateRebillCustomer($bodyoptions);
                        //echo "<pre>";echo "<br/>";
                       // print_r($response);        
                            echo    $result         = $response->CreateRebillCustomerResult->Result;echo "<br/>";
                            echo    $customerId     = $response->CreateRebillCustomerResult->RebillCustomerID;echo "<br/>";
                            echo "<br/>";
                        if($result=='Success' AND $customerId){
                            echo 'Member Created at eWay Successfully!...<br/>';
                            echo 'Creating Recurring Billing Cycle on eWay,Please wait......<br/>';
                            //$UpdateRebillCustomer = CreateRebillEvent($customerId);
                            //print_r($UpdateRebillCustomer);
                        }
                        else{
                            echo    $ErrorSeverity  = $response->CreateRebillCustomerResult->ErrorSeverity;echo "<br/>";
                            echo    $ErrorDetails   = $response->CreateRebillCustomerResult->ErrorDetails;echo "<br/>";
                        }
                    }
                    catch(SOAPFault $e){
                        print $e;
                    }
                    if($customerId){

                                $bodyoptions2 = array(
                                "CreateRebillEvent " => array(
                                      "RebillCustomerID" => $customerId,                   
                                      "RebillInvRef" => "Ref123",
                                      "RebillInvDes"=>"description",
                                      "RebillCCName"=>"Mr Andy Person",
                                      "RebillCCNumber"=>"4444333322221111",
                                      "RebillCCExpMonth"=>"12",
                                      "RebillCCExpYear"=>"15",
                                      "RebillInitAmt"=>"100",
                                      "RebillInitDate"=>date('d/m/Y'),
                                      "RebillRecurAmt"=>"200",
                                      "RebillStartDate"=>date('d/m/Y'),
                                      "RebillInterval"=>"31",
                                      "RebillIntervalType"=>"1",
                                      "RebillEndDate"=>"31/12/2013",                     
                                   )
                                );
                        try{    
                            $response = $client->__soapCall("CreateRebillEvent", $bodyoptions2,NULL,$header,$outputHeader);
                            //echo   $client->__getLastRequest();           
                            //print_r($response);
                            echo "<br/>";
                              echo  $result2        = $response->CreateRebillEventResult->Result;echo "<br/>";
                              echo  $RebillCustomerID   = $response->CreateRebillEventResult->RebillCustomerID;echo "<br/>";
                            if($result2=='Success'){
                                echo 'Recurring Cycle Created Successfully at eWay!...<br/>';
                                echo 'Member Id is ===>'.$RebillCustomerID;
                                //$UpdateRebillCustomer = CreateRebillEvent($customerId);
                                //print_r($UpdateRebillCustomer);                           
                            }
                            else{
                                echo    $ErrorSeverity  = $response->CreateRebillEventResult->ErrorSeverity;echo "<br/>";
                                echo    $ErrorDetails   = $response->CreateRebillEventResult->ErrorDetails;echo "<br/>";
                            }
                        }
                     catch(SOAPFault $e){
                        print $e;
                     }
                     }
                  ?>

尝试通过定义SoapClient classmap option来调用SOAPWeb服务。此外,您必须通过调用html_entity_decode然后调用simplexml_load_string来加载OutputData。

您还可以尝试一个WSDL到php生成器,它将简化调用和接收响应,例如https://github.com/mikaelcom/WsdlToPhp

$xml = '<?xml version="1.0" encoding="utf-8"?>
                <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
                    <soap:Body>
                    <ProcessRequestResponse xmlns="http://xxxxxxxxx.yyy">
                        <ProcessRequestResult>
                            <OutputData>123</OutputData>
                            <ErrorMessage />
                            <Result>Success</Result>
                        </ProcessRequestResult>
                    </ProcessRequestResponse>
                    </soap:Body>
                </soap:Envelope>';
        $doc = new DOMDocument();
        $doc->loadXML($xml);
        echo $doc->getElementsByTagName('OutputData')->item(0)->nodeValue;

结果是:

3