in reply to Configuration file parsing?
It uses XML::Parser internally, so you'll need to install that as well.
To see the format of the data you get back, use Data::Dumper:use XML::Simple; my $conf = XMLin("/foo/bar.xml");
use Data::Dumper; print Dumper $conf;
|
|---|