http://qs321.pair.com?node_id=647687


in reply to Valid XML and XML::Simple

I can confirm your symptom (i.e. "no error") when I force XML::Simple to use XML::Parser as its parser. Maybe your configuration uses XML::Parser as its default? Consult the "ENVIRONMENT" section in XML::Simple's documentation.

If I let XML::Simple use XML::SAX as parser (which is my default, since it is installed), I get

Undeclared prefix: person at E:/perl/site/lib/XML/NamespaceSupport.pm +line 298.

Which is "somewhat" similar to the message Anonymous Monk reports in the first reply in this thread (but who -- judging from his message -- uses some other parser).

Replies are listed 'Best First'.
Re^2: Valid XML and XML::Simple
by mrguy123 (Hermit) on Oct 28, 2007 at 13:57 UTC
    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
      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();