Why is XML::Simple Discouraged?

XML::Simple is the most complex XML parser available The main problem with XML::Simple is that the resulting structure is extremely hard to navigate correctly. $ele->{ele_name} can return any of the following (even for elements that follow the same spec): [ { att => ‘val’, …, content => [ ‘content’, ‘content’ ] }, … ] [ … Read more