NAME Catalyst::Plugin::XMLRPC - DEPRECATED Dispatch XMLRPC methods with Catalyst SYNOPSIS # Include it in plugin list use Catalyst qw/XMLRPC/; # Public action to redispatch somewhere in a controller sub entrypoint : Global : Action('XMLRPC') {} # Methods with XMLRPC attribute in any controller sub echo : XMLRPC('myAPI.echo') { my ( $self, $c, @args ) = @_; return RPC::XML::fault->new( 400, "No inp