8
votes
How can I prevent XML::XPath from fetching a DTD while processing an XML file?
XML::XPath is based on XML::Parser. There is an option in XML::Parser to NOT use LWP to resolve external entities (such as DTDs). And XML::XPath lets you pass an XML::Parser objetc, to use as the p …
3
votes
How do I disable subtag sorting in Perl’s XML::Simple?
It seems that Tie::IxHash can help you.
In my tests, reversing the email and name lines in the hash in the code below re …
