私は入力XMLを持っています。ここで、S:Fault xmlns:ns4 = "http://www.w3.org/2003/05/soap-envelope"これはfaultstingノードからデータを取得することに問題があります。 。動作していない名前空間の問題
<?xml version="1.0" encoding="UTF-8"?>
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<S:Fault xmlns:ns4="http://www.w3.org/2003/05/soap-envelope">
<faultcode>S:Server</faultcode>
<faultstring>The GTIN is not valid or the system can not map the Company Prefix to an existing Company Prefix from the Setting</faultstring>
</S:Fault>
</S:Body>
</S:Envelope>
XLSTコード...
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="example" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns4="http://www.w3.org/2003/05/soap-envelope"
exclude-result-prefixes="S ns4">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/S:Envelope">
<ns0:MT_CreateSerialNumberResponse_IB xmlns:ns0="example">
<serialNumberList xmlns="urn:abcd:1">
<body>
<message>
<xsl:value-of select="S:Body/ns4:Fault/ns4:faultstring"/>
</message>
</body>
</serialNumberList>
</ns0:MT_CreateSerialNumberResponse_IB>
</xsl:template>
</xsl:stylesheet>
期待される結果...私は何か
<ns0:MT_CreateSerialNumberResponse_IB xmlns:ns0="example">
<serialNumberList xmlns="urn:abcd:1">
<body><message>The GTIN is not valid or the system can not map the Company Prefix to an existing Company Prefix from the Setting</message>
</body>
</serialNumberList>
</ns0:MT_CreateSerialNumberResponse_IB>
XSLT検証のための無料のオンラインツールがあります。http:// xslttestが。 appspot.com/ – Naidu