in reply to Re: Using the XML::Parser Module
in thread Using the XML::Parser Module

XML::GDOME is actually a wrapper around libgdome which is a wrapper around libxml2, so it’s no surprise that it supports the same things. libgdome adds full DOM Level 2 support on top of libxml2 (including the Events stuff and such); unless you need that (which few people probably do), you can just use XML::LibXML. The code you’ll write is identical in both cases.

Makeshifts last the longest.

Replies are listed 'Best First'.
Re^3: Using the XML::Parser Module
by raina (Initiate) on Nov 03, 2005 at 06:06 UTC
    Thanks guys ... the help is really appreciated :-)