I'm using FileMaker Pro 9 and I want to take a database with repeating records (e.g. one field is "Lines" and it can have up to 9 strings) and import data into it from an XML file.
Right now, with the following XML file, I only get the first entry imported ("Room"):
<?xml version="1.0" encoding="UTF-8"?>
<FMPXMLRESULT xmlns="http://www.filemaker.com/fmpxmlresult">
<ERRORCODE>0</ERRORCODE>
<PRODUCT NAME="" VERSION="" BUILD=""/>
<DATABASE NAME="New Invoice" RECORDS="1" DATEFORMAT="M/d/yyyy" TIMEFORMAT="" LAYOUT="hh/mm/a"/>
<METADATA>
<FIELD NAME="Description Index" TYPE="TEXT" EMPTYOK="NO" MAXREPEAT="9"/>
</METADATA>
<RESULTSET FOUND="1">
<ROW RECORDID="" MODID="">
<COL>
<DATA>Room</DATA>
<DATA>Equipment</DATA>
<DATA>Labor</DATA>
</COL>
</ROW>
</RESULTSET>
</FMPXMLRESULT>
How can I get the rest of the entries ("Equipment" and "Labor") imported?