我写了XSLT,但是出现以下错误:
与元素类型
xsi
关联的属性xsi:type
的前缀RemoteException
没有绑定。
我的输入XML是
<RemoteException xsi:type='ns1:Exception' xmlns:ns1='http://errorhandling.service.e2e.de'>
<causeClass xsi:type='xsd:string'>de.common.exception.StringLengthException</causeClass>
<causeMessage xsi:type='xsd:string'>lfdNr has invalid length: 11 (min: 14, max: 14, content: '035593111P0')</causeMessage>
<causeStackTrace xsi:type='xsd:string'>at)</causeStackTrace>
<errorCode xsi:type='xsd:int'>201</errorCode>
<message xsi:type='xsd:string'>invalid length</message>
</RemoteException>
XSLT代码
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" exclude-result-prefixes="xsl soap response ns1 xsi"
xmlns:response="http://tempuri.org/"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:ns1="http://errorhanlding.service.e2e..de"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- Output -->
<xsl:output method="xml" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/">
<xsl:if test="//RemoteException">
<Fault_MT_Test>
<standard>
<faultText>
<xsl:value-of select="//faultstring"/>
</faultText>
<faultUrl>
<xsl:value-of select="//faultcode"/>
</faultUrl>
</standard>
</Fault_MT_Test>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
能否请您向我解释此错误的含义以及如何消除该错误?
答案 0 :(得分:0)
XML名称空间前缀,例如xsi
;否则,XML格式不正确。不控制XML没关系。要么告诉您上游的人对其进行修复(不可否认,它 破了 ),要么您自己进行修复。
要声明xsi
,请添加以下内容:xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
。