Catalyst-Plugin-XMLRPC
view release on metacpan or search on metacpan
my ( $self, $c, $a, $b ) = @_;
return $a + $b;
}
DESCRIPTION
This plugin allows your controller class to dispatch XMLRPC methods from
its own class.
METHODS
$c->xmlrpc
Call this method from a controller action to set it up as a endpoint.
setup_dispatcher
SEE ALSO
Catalyst::Manual, Catalyst::Test, Catalyst::Request, Catalyst::Response,
Catalyst::Helper, RPC::XML
AUTHOR
Sebastian Riedel, "sri@oook.de" Marcus Ramberg, "mramberg@cpan.org"
Christian Hansen Yoshinori Sano Michiel Ootjers Jos Boumans
lib/Catalyst/Plugin/XMLRPC.pm view on Meta::CPAN
This plugin is DEPRECATED. Please do not use in new code.
This plugin allows your controller class to dispatch XMLRPC methods
from its own class.
=head1 METHODS
=head2 $c->xmlrpc
Call this method from a controller action to set it up as a endpoint.
=cut
sub xmlrpc {
my $c = shift;
# Deserialize
my $req;
eval { $req = $c->_deserialize_xmlrpc };
if ( $@ || !$req ) {
( run in 0.245 second using v1.01-cache-2.11-cpan-27979f6cc8f )