试图在xslt 1.0中获取元素。但是无法获得响应xml

时间:2017-03-30 06:49:14

标签: xml xslt-1.0 xalan

Reqeust xml is attached

.doc-overlay

这是写入但无效的xsl代码

2 个答案:

答案 0 :(得分:1)

检查此代码我认为您的问题已解决

<xsl:if test="../tn:notification/evt0:relationship/evt0:businessInteractionIdentifier/evt0:customerOrderIdentifier/evt0:idContext/evt0:value">
<tns:projectIdentifier>
<tns:idContext>
<tns:value>
<xsl:value-of select="//evt0:value" />
</tns:value>
</tns:idContext>
</tns:projectIdentifier>

答案 1 :(得分:0)

我解决了这个问题:

<xsl:if test="../../tn:notification/evt0:relationship/evt0:businessInteractionIdentifier/evt0:customerOrderIdentifier/evt0:idContext/evt0:value">

我保持其他一切不变。