gfm_di.org_tree.usa Baseline 2754 2754 72060793789255493 OR Oranization 10 2008-10-01T00:00:00Z 2999-12-01T00:00:00Z 72060793789255493 UN NOS 72060793789255508 OR Organization 25 2008-10-01T00:00:00Z 2999-12-01T00:00:00Z 72060793789255508 UN NOS 72060793789255510 OR Organization 50 2008-10-01T00:00:00Z 2999-12-01T00:00:00Z 72060793789255510 UN NOS #### #!/usr/bin/perl use strict; use warnings; use XML::LibXML; my $filename = "aos_list.xml"; my $parser = XML::LibXML->new(); my $xmldoc = $parser->parse_file($filename); # tried different Xpath - still returns nothing for my $sample ($xmldoc->findnodes('/GfmDocument/GFMIEDM35/OBJ_ITEM_OO_TBL/OBJ_ITEM')) { for my $property ($sample->findnodes('./*')) { print $property->nodeName(), ": ", $property->textContent(), "\n"; } print "\n"; }