I'm having difficult reading in XML files and being able to cherry pick the data I want, without multiple lines of output with blank fields in the Data Interop Workbench. Here is an example:
Given the following XML file:
<document>
<pages>
<page title="one" id="001">
<objects>
<object name="thing1">
<property type="string">Thing 1</property>
</object>
</objects>
</page>
<page title="two" id="002">
<objects>
<object name="thing2">
<property type="string">Thing 2</property>
</object>
</objects>
</page>
</pages>
</document>
I want to gather the page title, object name, and property text.
It should output 2 records like the following:
"one", "thing1", "Thing 1"
"two", "thing2", "Thing 2"
As I stated previously, no matter which elements I select in the Feature Set,
I get several lines with blank fields.
I cannot offer any screenshots as Data Interop Workbench is running on a secured system
with no internet connection.
Any help would be greatly appreciated.