douxi5940 2016-11-10 15:07
浏览 72
已采纳

使用所有XMLNS解析SOAP信封 - 不在Magento上工作

I have tried and tried and have been unable to come up with a solution. My issue is this: I have a SOAP envelop response which is as follows...

    <soapenv:envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:header>
        <soapenv:body>
            <mcu:prescreenusereligibilityresponse xmlns:mcu="http://www.ups.com/XMLSchema/XOLTWS/MCUserEligibility/v1.0">
                <common:response xmlns:common="http://www.ups.com/XMLSchema/XOLTWS/Common/v1.0">
                    <common:responsestatus>
                        <common:code>1</common:code>
                        <common:description>Success</common:description>
                    </common:responsestatus>
                </common:response>
                <mcu:eligibilitystatuscode>3</mcu:eligibilitystatuscode>
            </mcu:prescreenusereligibilityresponse>
        </soapenv:body>
    </soapenv:header>
</soapenv:envelope>

I then access the elements like this on my mac:

$ns=array();
$xml=new SimpleXMLElement($string);
foreach($xml->getNamespaces(true) as $key=>$url){
    $xml->registerXPathNamespace($key, $url);
    $ns[]=strval($url);

}
print_r(strval($xml->children($ns[0])->header->body->children($ns[1])->prescreenusereligibilityresponse->eligibilitystatuscode));

Using the same method on a separate Linux instance I get an error on the print_r line, saying the last child cannot be null. I have confirmed that the values are correct. I have also tried using $xml->xpath('//mcu:eligibilitystatuscode') with no success.

I'm really stuck -_-

  • 写回答

2条回答 默认 最新

  • duanjiaopi8218 2016-11-10 16:54
    关注

    I used an alternative. DOMDocument()

    I noticed after printing out the different object nodes to the screen, the capitalization in the xml string was different. I tried comparing the namespaces with proper capitalization and still had no success using SimpleXML.

    $doc = new DOMDocument();
    
                $doc->loadXML($result);
                if($doc){
                    foreach($doc->getElementsByTagNameNS('*', '*') as $element){
                        if($element->tagName=='mcu:EligibilityStatusCode'){
                            if($element->nodeValue==0){
                                return true;
                            }
                            else{
                                return false;
                            }
                        }
                    }
                    return false;
                }
                else{
                    return false;
                }
    

    Above is the working code, where result is the xml returned from the soap request. My code essentially cycles through each node in the xml response. Which in turn displays on a block on the Magento front end.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 三因素重复测量数据R语句编写,不存在交互作用
  • ¥15 微信会员卡等级和折扣规则
  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表