in reply to Problem parsing XML into arrays using XML::Simple
Looking at the Dumper output suggests that
print $parser->{FragmentAssets}->{asset}->{url}->[1]; [download]
should be
print $parser->{FragmentAssets}->{asset}->[1]->{url}; [download]