in reply to How to parse this XML?

My advice would be to feed your XML into a small program such as (assuming your XML is in 'text.xml' ) :

use XML::Simple; use Data::Dumper; my $foo = XMLin('test.xml'); print Dumper($foo);
Whereupon it should become clearer.
/J\