- Aug
- 30
- 1
Hello
I have an XML file with the following structure
Prior to v28, I was using the following to retrieve the value of the 'version' attribute:
However, in v28 TCC is returning an error:
I can work around this using a combination of XMLOPEN, XMLXPATH and XMLGETATTR, but is this a known issue in v28 or do I need to change the syntax of the original statement?
Thanks for your help!
Chris
I have an XML file with the following structure
XML:
<Connect version='1.0'>
<!-- ... -->
</Connect>
Prior to v28, I was using the following to retrieve the value of the 'version' attribute:
Code:
ECHO %@XMLXPATH["test.xml",/Connect/@version]
However, in v28 TCC is returning an error:
Code:
TCC: "/Connect/@version"
I can work around this using a combination of XMLOPEN, XMLXPATH and XMLGETATTR, but is this a known issue in v28 or do I need to change the syntax of the original statement?
Thanks for your help!
Chris