in reply to XML module conflicts

According to the docs, it seems like XML::SAX should have been loaded even in the first case (you might investigate and maybe mention that to the author). What concerns me more though is XML::SAX "screwing up filename arguments." Is that a bug in XML::SAX or one of the SAX parsers?

Replies are listed 'Best First'.
Re^2: XML module conflicts
by cLive ;-) (Prior) on Mar 07, 2007 at 18:59 UTC
    Well, when sending a filename argument, I get this error: The only thing I know how to parse is a string. You have to fetch the data for me yourself. at /usr/local/lib/perl5/site_perl/5.8.8/XML/Simple.pm line 290 Hmmmm.
      What version of XML::Simple? Line 290 in the latest version (2.16) is just my ($tree);.
        I have no idea - it's actually line 292 - for some reason all my error reporting has been off today, so I didn't pay much heed and confirmed the actual line with print statements:     $tree = $sp->parse_uri($filename); is the actual line.