15

xml オブジェクトを取得する最初の名前空間を指定すると、simpleXML でそれをロードしようとすると、多くの名前空間を持つこのい XML がありますが、他の名前空間のタグをたどってもオブジェクトにはなりません。

この XML を解析するにはどうすればよいですか?

<?xml version="1.0" encoding="UTF-8"?>
<soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
    <soap-env:Header>
        <eb:MessageHeader xmlns:eb="http://www.ebxml.org/namespaces/messageHeader" eb:version="1.0" soap-env:mustUnderstand="1">
            <eb:From>
                <eb:PartyId eb:type="URI">wscompany.com</eb:PartyId>
            </eb:From>
            <eb:To>
                <eb:PartyId eb:type="URI">mysite.com</eb:PartyId>
            </eb:To>
            <eb:CPAId>something</eb:CPAId>
            <eb:ConversationId>moredata.com</eb:ConversationId>
            <eb:Service eb:type="compXML">theservice</eb:Service>
            <eb:Action>theaction</eb:Action>
            <eb:MessageData>
                <eb:MessageId>a certain messageid</eb:MessageId>
                <eb:Timestamp>2009-04-11T18:43:58</eb:Timestamp>
                <eb:RefToMessageId>mid:areference</eb:RefToMessageId>
            </eb:MessageData>
        </eb:MessageHeader>
        <wsse:Security xmlns:wsse="http://schemas.xmlsoap.org/ws/2002/12/secext">
            <wsse:BinarySecurityToken valueType="String" EncodingType="wsse:Base64Binary">an impresive binary security toekn</wsse:BinarySecurityToken>
        </wsse:Security>
    </soap-env:Header>
    <soap-env:Body>
        <SessionCreateRS xmlns="http://www.opentravel.org/OTA/2002/11" version="1" status="Approved">
            <ConversationId>the goodbye token</ConversationId>
        </SessionCreateRS>
    </soap-env:Body>
</soap-env:Envelope>

次のコードで解析しようとしています

<?php
$xml = simplexml_load_string($res,NULL,NULL,"http://schemas.xmlsoap.org/soap/envelope/");
?>

ただし、$xml オブジェクトには次のもののみが含まれます。

SimpleXMLElement Object
(
    [Header] => SimpleXMLElement Object
        (
        )

    [Body] => SimpleXMLElement Object
        (
        )

)
4

5 に答える 5

35

名前空間とアクセスをXPathに登録する必要があると思います。次のようなものでうまくいくはずです(私はこれをテストする機能を持っていません)。

$xml = simplexml_load_string($res, NULL, NULL, "http://schemas.xmlsoap.org/soap/envelope/");
$xml->registerXPathNamespace('soap-env', 'http://schemas.xmlsoap.org/soap/envelope/');
$xml->registerXPathNamespace('eb', 'http://www.ebxml.org/namespaces/messageHeader');
$xml->registerXPathNamespace('wsse', 'http://schemas.xmlsoap.org/ws/2002/12/secext');

次に、次のようなことを行うことができます。

foreach($xml->xpath('//eb:MessageHeader') as $header)
{
    var_export($header->xpath('//eb:CPAId')); // Should output 'something'.
}

名前空間はXMLにすでに存在するため、名前空間を登録する必要はありません。ただし、これについてはよくわかりませんが、テストする必要があります。

お役に立てれば。

于 2009-04-11T21:18:52.530 に答える
12

print_r1) SimpleXML オブジェクトの「内」にあるものを確認するために and フレンドを使用しないでください。説明と代替手段については、 https://github.com/IMSoP/simplexml_debugを参照してください。

2) SimpleXML での名前空間のサポートは、 メソッド->children()->attributes()メソッドによって提供されます。

たとえば、次のように From ノードの PartyId を取得できます。

$from_party = (string)$xml->children('soap-env', true)->Header->children('eb', true)->MessageHeader->From->PartyId;
于 2012-11-12T19:32:40.680 に答える
0

石鹸の封筒です。すべての xml 解析を抽象化するために、soap-client を使用したい場合があります。PHPには、かなり優れた SOAP クライアントがデフォルトで含まれています。

于 2009-04-11T21:53:09.513 に答える