Skip Menu |

This queue is for tickets about the Catalyst-Plugin-XMLRPC CPAN distribution.

Report information
The Basics
Id: 50367
Status: open
Priority: 0/
Queue: Catalyst-Plugin-XMLRPC

People
Owner: Nobody in particular
Requestors: st.giovanni [...] gmx.at
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.0
Fixed in: (no value)



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
Fixed in subversion. But this didn't fix the tests totally - live tests still fail.. I've marked this module as deprecated (and will be trying to ship a dist as such to CPAN) as it hasn't been released in years and doesn't work due to changes around it. Thanks anyway for the patch. Cheers t0m