Subject: | breaks with upgrade of RPC::XML |
Hi,
After upgrading RPC::XML and RPC::XML::Parser, Catalyst::Plugin::XMLRPC
breaks due to changes in the former.
To fix, XMLRPC.pm needs to be updated according to the following diff:
$ diff <after_edit> <before_edit>
7,8c7
< #use RPC::XML::Parser;
< use RPC::XML::ParserFactory 'XML::Parser';
---
Show quoted text
> use RPC::XML::Parser;
16c15
< __PACKAGE__->_xmlrpc_parser( RPC::XML::ParserFactory->new );
---
Show quoted text> __PACKAGE__->_xmlrpc_parser( RPC::XML::Parser->new );
Further relevant information:
RPC::XML VERSION 1.44
RPC::XML::Parser VERSION 1.20
Great module! Keep it up.
Regards,
axolotl