I have a sample file source.xml:
Last year the following script returned 2. This morning it returns 0. What am I doing wrong?
XML:
<?xml version="1.0" encoding="UTF-8"?>
<Instructors>
<Instructor Dept_ID="123">
<Name First="John" Last="Doe">Doe, John</Name>
</Instructor>
<Instructor Dept_ID="456">
<Name First="Jane" Last="Doe">Doe, Jane</Name>
</Instructor>
</Instructors>
Last year the following script returned 2. This morning it returns 0. What am I doing wrong?
Code:
@echo off
SET a=%@XMLOPEN[source.xml]
SET b=%@XMLNODES[/Instructors]
echo %b
SET c=%@XMLCLOSE[]