OK. I'll get down to the nitty-gritty. I'm dealing with media (video) files, and want to export the editing data for many records all at once, in a nice nested XML structure. Each video has a number (called idHouse in the example) and associated edits which will have a start timecode, and possibly an end timecode. If I export the records for one idHouse, I get this, in tab-format:
90407 10:00:43:24
10:01:45:13
10:04:15:04 10:04:15:05
10:05:47:01
10:09:40:21
10:11:22:05 10:11:22:06
10:17:01:17 10:17:01:18
10:23:41:18
90407 is the idHouse, and there are 8 edits, three of which have both a start and end timecode. If I export the same stuff as FMPXMLRESULT, I get this:
<?xml version="1.0" encoding="UTF-8" ?>
0
90407
10:00:43:2410:01:45:1310:04:15:0410:05:47:0110:09:40:2110:11:22:0510:17:01:1710:23:41:18
10:04:15:0510:11:22:0610:17:01:18
I put some CRs into that to make it easier to read- as you can see the 1st is the idHouse value (the parent record) and the other 2 s are the start and end timecode values. Using this XSLT stylesheet to parse the FMPXMLRESULT on the way out:
<?xml version="1.0" encoding="UTF-8" ?>
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" exclude-result-prefixes="fmp">
I get this:
<?xml version="1.0" encoding="UTF-8"?>
90407
10:00:43:24
In other words, the export with all the related records but the first ignored. But the related records are all there in the FMPXMLRESULT; it's just that my stylesheet isn't clever enough to get them out. It seems to me that I'm going to have to rewrite it with some kind of nested structure, so maybe that "" needs to be something different, but nothing I've tried so far works.
Incidentally the unltimate object of the excercise is much more complicated than this, but if I can just get this parsing-related-records thing sorted I should be OK.
If you have read this far, you have my thanks and admiration.