The parser will not recognize additional child elements because of a space before the closing tag. Example:
<links>
<visualLink pid="6" gid="1" />
<visualLink pid="6" gid="2" />
<visualLink pid="6" gid="3" />
</links>
It will only read the first child with attribute "1" and skip the rest. If I eliminate the space between gid="1" and />, it will read all the child elements.
Any fixes?