Я хочу заменить теги xml, которые выглядят так: <indicator itype="ST" ind="U"/>
на <indicator itype="ST" ind="HELLO"/>
. Используемая мной таблица стилей xslt выглядит следующим образом:
<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:template match = "@*|node()">
<xsl:copy>
<xsl:apply-templates select = "@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match = "indicator[@itype='ST' and @ind='U']">
<xsl:attribute name = "ind">
<xsl:text>HELLO</xsl:text>
</xsl:attribute>
</xsl:template>
</xsl:stylesheet>
Таблица стилей не работает, и процессор выдает исключение. Как я могу это исправить?