I have an application who create some temporary XML that I have to parse and catch some information in. One of theses XML contains multiples rows with path to each related XML. It's something like :
<z:row TimeStamp="2012-09-25T09:58:49" FileName="\\test\app\myfile_AB.xml"/>
<z:row TimeStamp="2012-09-25T09:58:49" FileName="\\test\app\myfile_CD.xml"/>
...
I would like to know if it's possible to parse this "master" XML with JAXB, get all the path and then do a loop and treat each of the related XMLs in one single operation.
All the XML have approximately the same structure.
Thank you in advance for any help