Re: [xsl] xslt create a variable from external xml file

Subject: Re: [xsl] xslt create a variable from external xml file
From: "Martin Honnen martin.honnen@xxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Tue, 22 Aug 2023 13:36:27 -0000
On 22.08.2023 15:34, LEGAULT, PHILLIP plegault@xxxxxxxxxx wrote:
>
> I have a need to determine what environment Ibm 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>
>
> B  <xsl:when test="$externalDoc/environment = 'test'">
>

The XPath would be e.g.

 B  $externalDoc/root/environment

Current Thread