SimpleXML を使用して XML ペイロードを解析中です。名前空間情報などを削除するために XSL 変換を使用しています。その結果、クリーンな xml パケットが生成されます (ちなみに、私はもともと preg_replace を使用して同じことを取得していましたが、他の理由で xslt に移動しました。将来的には xslt でより多くの作業を行うためです。)
プロセスは正常に機能しているようです。一部の要素を除いて。次の出力では、Street Name 属性が欠落しています。
XML コードを取得してhttp://xmlgrid.net/ (またはその他) に貼り付けると、ペイロードは期待どおりに解析されます。本当に困惑しています。ヘルプ?
array(10) {
["BuildingName"]=>
object(SimpleXMLElement)#28 (0) {
}
["FloorNo"]=>
object(SimpleXMLElement)#30 (0) {
}
["UnitNo"]=>
object(SimpleXMLElement)#31 (0) {
}
["LotNo"]=>
string(3) "128"
["StreetNo"]=>
string(3) "167"
["Street"]=> // Missing Street Type
string(4) "PITT" // Should be Street in here
["City"]=>
string(7) "REDFERN"
["State"]=>
object(SimpleXMLElement)#32 (1) {
["@attributes"]=>
array(1) {
["Name"]=>
string(3) "NSW"
}
}
["Postcode"]=>
string(4) "2015"
["Country"]=>
string(9) "Australia"
}
いくつかの要素で問題が発生しています。サンプルコードは次のとおりです。
// Get the XML Packet and the transform
$data = file_get_contents("/mnt/tmp/test.xml");
$tsf = file_get_contents("/mnt/tmp/tsf.xslt");
// Load the XML data source
$xml= simplexml_load_file('/mnt/tmp/test.xml');
// Load the XML stylesheet
$xsl = simplexml_load_file('/mnt/tmp/tsf.xslt');
// create an xslt processor instance
$proc = new XSLTProcessor;
// import the xsl stylesheet into the xslt processor
$proc->importStyleSheet($xsl);
// Transform and output the xml data source
$m = $proc->transformToXML($xml);
var_dump ($m);
$z = new SimpleXMLElement($m);
$f= (array)$z->Body->ValuationTransaction->Message->ValuationType->FullRegistered->RealEstate->Location->Address;
var_dump ($f);
XSLT は次のとおりです。
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<!-- keep comments -->
<xsl:template match="comment()">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
<xsl:template match="*">
<!-- remove element prefix -->
<xsl:element name="{local-name()}">
<!-- process attributes -->
<xsl:for-each select="@*">
<!-- remove attribute prefix -->
<xsl:attribute name="{local-name()}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
XML ペイロードは次のとおりです。
<?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><l:ValuationTransaction xmlns:l="http://www.lixi.org.au/schema/cal1.3/ValuationTransaction" ProductionData="Yes"><l:RevisionNumber LIXIVersion="1.0" UserType="Lender" /><l:Identifier Description="VMS" Type="ThirdPartyAssigned" UniqueID="9528465" /><l:Date>2013-10-18</l:Date><l:Time>13:52:24</l:Time><l:Comment></l:Comment><l:Publisher><l:RelatedEntityRef RelatedID="vms01" /></l:Publisher><l:Message><l:Identifier Description="VMS" Type="ThirdPartyAssigned" UniqueID="9528465" /><l:MessageRelatesTo><l:Identifier Type="LenderAssigned" UniqueID="1234567892" /></l:MessageRelatesTo><l:MessageBody Type="Information"><l:Status Name="Assigned">
<l:Date>2013-10-18</l:Date>
<l:Time>10:34:00
</l:Time>
</l:Status></l:MessageBody><l:ValuationType>
<l:Identifier Description="Customer Name" Type="LenderAssigned" UniqueID="Mister Smith" />
<l:Identifier Description="Loan Reference" Type="LenderAssigned" UniqueID="A-4000" />
<l:Identifier Description="Customer Number" Type="LenderAssigned" UniqueID="" />
<l:Identifier Description="Business Unit" Type="LenderAssigned" UniqueID="8023" />
<l:Identifier Description="Valuation ID" Type="BrokerAssigned" UniqueID="1ZJX12380Y" />
<l:Identifier Description="Replacement Valuation ID" Type="ThirdPartyAssigned" UniqueID="" />
<l:Identifier Description="Replacement Valuation Type" Type="ThirdPartyAssigned" UniqueID="" />
<l:Identifier Description="Valuer Reference Number" Type="ValuerAssigned" UniqueID="80145553" />
<l:FullRegistered OtherReasonDescription="Other" PropertyTypeDescription="Fully Detached House" ReasonFor="Other" ValSubType="Standard">
<l:RealEstate Status="Established">
<l:Identifier Type="BrokerAssigned" UniqueID="80HLKWII" />
<l:Residential Type="FullyDetachedHouse" />
<l:EstimatedValue Amount="1000000" EstimateBasis="CustomerEstimate">
<l:Date>2013-10-17</l:Date>
</l:EstimatedValue>
<l:Location>
<l:Address>
<l:BuildingName />
<l:FloorNo />
<l:UnitNo />
<l:LotNo>128</l:LotNo>
<l:StreetNo>167</l:StreetNo>
<l:Street OtherTypeDescription="" Type="Street">PITT</l:Street>
<l:City>REDFERN</l:City>
<l:State Name="NSW" />
<l:Postcode>2015</l:Postcode>
<l:Country>Australia</l:Country>
</l:Address>
</l:Location>
</l:RealEstate>
<l:RequestDate>
<l:Date>2013-10-17</l:Date>
</l:RequestDate>
<l:DetailedComment>
<l:RelatedEntityRef RelatedID="80HLKWII" />
<l:Comment />
</l:DetailedComment>
<l:FeeSegment>
<l:Fee Amount="242.00" Class="Valuer">
<l:Identifier UniqueID="CurrentFee" />
</l:Fee>
<l:Fee Amount="142.00" Class="Valuer">
<l:Identifier UniqueID="InitialAllocationFee" />
</l:Fee>
</l:FeeSegment>
</l:FullRegistered>
</l:ValuationType></l:Message><l:RelatedPartySegment><l:RelatedParty RelPartyDescription="Sandstone VMS" RelPartyType="ServiceCentre"><l:Identifier Type="Sequential" UniqueID="vms01" /></l:RelatedParty><l:RelatedParty RelPartyDescription="Suncorp Metway" RelPartyType="Lender">
<l:Identifier Type="Sequential" UniqueID="lender01" />
</l:RelatedParty><l:RelatedParty RelPartyType="ValuationFirm">
<l:Identifier Type="Sequential" UniqueID="valFirm01" />
<l:Identifier Description="Reference ID" Type="ThirdPartyAssigned" UniqueID="2038" />
<l:CompanyName BusinessName="TEST" />
<l:Address>
<l:NonStdAddress>PO Box 1444 </l:NonStdAddress>
<l:City>Abbotsford</l:City>
<l:State Name="NSW" />
<l:Postcode>2216</l:Postcode>
<l:Country>Australia</l:Country>
</l:Address>
<l:WorkPhone>
<l:Phone>
<l:FixedPhone>1300790000</l:FixedPhone>
</l:Phone>
</l:WorkPhone>
<l:WorkPhone>
<l:Phone>
<l:Fax>1300 793 000</l:Fax>
</l:Phone>
</l:WorkPhone>
<l:Email>sandstone@mtest.com</l:Email>
</l:RelatedParty><l:RelatedParty RelPartyType="Valuer">
<l:Identifier Type="Sequential" UniqueID="valuer01" />
<l:PersonName>
<l:FirstName>Tasso</l:FirstName>
<l:Surname>Balo</l:Surname>
</l:PersonName>
<l:Email>sandstone@mvsva.net</l:Email>
<l:ProfessionalInfrastructure>
<l:Accreditation AccreditationID="VAL010539" Type="Licence">
<l:Identifier UniqueID="VAL010539" />
</l:Accreditation>
</l:ProfessionalInfrastructure>
</l:RelatedParty><l:RelatedParty RelPartyType="AuthorisingValuer">
<l:Identifier Type="Sequential" UniqueID="authValuer01" />
<l:PersonName>
<l:FirstName>Tasso</l:FirstName>
<l:Surname>Balom</l:Surname>
</l:PersonName>
<l:Email>sandstone@mvsvaluers.net</l:Email>
<l:ProfessionalInfrastructure>
<l:Accreditation AccreditationID="VAL010539" Type="Licence">
<l:Identifier UniqueID="VAL010539" />
</l:Accreditation>
</l:ProfessionalInfrastructure>
</l:RelatedParty><l:RelatedParty RelPartyDescription="Dean llings" RelPartyType="Instructor">
<l:Identifier Description="Contact ID" UniqueID="Dean oll" />
<l:PersonName>
<l:FirstName>Dean</l:FirstName>
<l:Surname>llings</l:Surname>
</l:PersonName>
<l:WorkPhone>
<l:Phone>
<l:FixedPhone>0355839</l:FixedPhone>
</l:Phone>
</l:WorkPhone>
<l:Email>SunlinkValuations@suncorp.biz</l:Email>
</l:RelatedParty><l:RelatedParty RelPartyType="Vendor">
<l:Identifier UniqueID="MJVR4IBY" />
<l:PersonName IsPreferredContact="MostPreferred">
<l:FirstName>Angelo</l:FirstName>
<l:Surname>Gou</l:Surname>
</l:PersonName>
<l:HomePhone>
<l:Phone>
<l:FixedPhone>082909</l:FixedPhone>
</l:Phone>
</l:HomePhone>
<l:HomePhone PreferredContactMethod="Yes">
<l:Phone>
<l:Mobile>082909</l:Mobile>
</l:Phone>
</l:HomePhone>
</l:RelatedParty></l:RelatedPartySegment></l:ValuationTransaction></soapenv:Body></soapenv:Envelope>