Hi !
I tried to use tFileInputMSXML component. I created an xml file :
<root>
<book>
<bookRec>livre 1</bookRec>
<bookRec>livre 2</bookRec>
<bookRec>livre 3</bookRec>
<bookRec>livre 4</bookRec>
</book>
<disk>
<DiskRec>disk 1</DiskRec>
<DiskRec>disk 2</DiskRec>
<DiskRec>disk 3</DiskRec>
<DiskRec>disk 4</DiskRec>
<DiskRec>disk 5</DiskRec>
</disk>
</root>
I did like in the documentation (components RG_314_fr.pdf), p. 492 -> 494) and I have nothing in the log... What is the problem ?
And now, if I have this structure, is it also possible (in fact, tag disk may exist, it is not mandatory) ?? :
<root>
<book>
<bookRec>livre 1</bookRec>
<bookRec>livre 2</bookRec>
<bookRec>livre 3</bookRec>
<bookRec>livre 4</bookRec>
<disk>
<DiskRec>disk 1</DiskRec>
<DiskRec>disk 2</DiskRec>
<DiskRec>disk 3</DiskRec>
<DiskRec>disk 4</DiskRec>
<DiskRec>disk 5</DiskRec>
</disk>
</book>
<book>
<bookRec>livre 10</bookRec>
<bookRec>livre 11</bookRec>
<bookRec>livre 12</bookRec>
<bookRec>livre 13</bookRec>
</book>
<book>
<bookRec>livre 20</bookRec>
<bookRec>livre 21</bookRec>
<bookRec>livre 22</bookRec>
<bookRec>livre 23</bookRec>
<disk>
<DiskRec>disk 10</DiskRec>
<DiskRec>disk 11</DiskRec>
<DiskRec>disk 12</DiskRec>
<DiskRec>disk 13</DiskRec>
<DiskRec>disk 14</DiskRec>
</disk>
</book>
</root>