Hi everyone,
I've got a problem with the XML Reader in FME Desktop 2015. I want to read xml list attributes, and it works fine if a node contains multiple children like:
<feature>
<networks>
<network>
<type></type>
<linkage></linkage>
</network>
<network>
<type></type>
<linkage></linkage>
</network>
</networks>
</feature>
In this case the reader returns a list networks.network{}, which I need. BUT if networks contains only one network, then it does not return a list, but simple attributes like networks.network.type etc.
My Reader also lists the networks as a list, but in translation it becomes a simple attribute as mentioned. Is there a setting that I am missing?
Feature Attributes:
XMLReader settings:
Thanks,
mel