http://www.perlmonks.org?node_id=647695


in reply to Re: Valid XML and XML::Simple
in thread Valid XML and XML::Simple

Thanks for the tip. I am trying to force XML::SAX, but am getting this error
Can't locate object method "new" via package "XML::SAX" at /exlibris/p +roduct/perl-5.8.7/lib/site_perl/5.8.7/XML/SAX/ParserFactory.pm line 4 +3.
I will keep working on it

Replies are listed 'Best First'.
Re^3: Valid XML and XML::Simple
by Jim (Curate) on Oct 29, 2007 at 00:33 UTC
Re^3: Valid XML and XML::Simple
by Anonymous Monk on Oct 28, 2007 at 22:41 UTC
    perldoc XML::SAx NAME XML::SAX - Simple API for XML SYNOPSIS use XML::SAX; # get a list of known parsers my $parsers = XML::SAX->parsers(); # add/update a parser XML::SAX->add_parser(q(XML::SAX::PurePerl)); # remove parser XML::SAX->remove_parser(q(XML::SAX::Foodelberry)); # save parsers XML::SAX->save_parsers();