Am parsing XML with file names with escaped characters. This is the file name on the server:
Account-V%29%27%22%3B%3A%3E.layout
When I apply the document function, it is automatically transforming the escaped characters.
`<xsl:apply-templates select="document('Account-V%29%27%22%3B%3A%3E.layout')/Layout"/>
The above yields an error as it cannot find this file on the server:
Account-V)'";:>.layout
Is there way to tell the document() function to not transform the escaped chars in the file? I tried wrapping this around variables but it did not work.