[xsl] xslt create a variable from external xml file

Subject: [xsl] xslt create a variable from external xml file
From: "LEGAULT, PHILLIP plegault@xxxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Tue, 22 Aug 2023 13:33:50 -0000
I have a need to determine what environment I'm working on without hardcoding
the differences in the large xslt file.
I have tried

<xsl:variable name="externalDoc" select="document('inc/env.xml')"/>

File content
<?xml version="1.0" encoding="UTF-8"?>
<root>
    <environment>test</environment>
</root>

And in the main xslt file I use, I just want to add a T at the end.

<xsl:choose>
  <xsl:when test="$externalDoc/environment = 'test'">
    <xsl:text>T</xsl:text>
  </xsl:when>
  <xsl:when test="$externalDoc/environment = 'prod'">
    <xsl:text></xsl:text>
  </xsl:when>
</xsl:choose>




Phil Legault
RDx Platform Lead

Current Thread