У меня проблема с вложенным циклом. Переменная выходит за рамки видимости, когда я пытаюсь выбрать ее обратно. Я понимаю, почему (я думаю), но я не знаю, какие у меня есть варианты, чтобы это исправить.
<xsl:for-each select="/objects/InstalledSQLServices">
<xsl:variable name="InstalledService" select="./Property[@Name ='Name']"></xsl:variable>
<tr>
<td align="left">
<xsl:value-of select="./Property[@Name ='DisplayName']"/>
</td>
<td align="left">
<xsl:value-of select="./Property[@Name ='Status']"/>
</td>
<xsl:for-each select="/objects/SqlVersion">
<xsl:variable name="SqlInstance" select="concat('MSSQL$',./Property[@Name ='Instance'])"></xsl:variable>
<xsl:variable name="SqlDescription">
<xsl:choose>
<xsl:when test="$InstalledService=$SqlInstance">
<xsl:value-of select="concat(./Property[@Name ='Version'],' ', ./Property[@Name ='Edition'])"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="None"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
</xsl:for-each>
<td align="left" style="color: rgb(255,0,0); font-weight: bold">
<xsl:copy-of select="$SqlDescription"/>
</td>
</tr>
</xsl:for-each>