in reply to XML::Checker::Parser
That would be Handlers => [ Unparsed => \&my_Unparsed_handler ] should be Handlers => { Unparsed => \&my_Unparsed_handler }. Note the { ... } instead of [ ... ]: the Handlers parameter should be a hash ref, not an array ref (hence the error message when Perl tries to force an arry into a hash).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: XML::Checker::Parser
by rubric (Initiate) on Nov 25, 2002 at 10:00 UTC | |
by mirod (Canon) on Nov 25, 2002 at 10:06 UTC | |
by rubric (Initiate) on Nov 25, 2002 at 10:42 UTC |