in reply to Re: How to parse a xml file using XML::DOM??
in thread How to parse a xml file using XML::DOM??

As it says, XML::DOM is not a streaming or event parser, it's a document parser. So, it stores the entire XML in memory and works the tree. Not very useful for the task at hand, is it? :-)
  • Comment on Re^2: How to parse a xml file using XML::DOM??