NAME
Sledge::Plugin::XMLRPC - XMLRPC plugin for Sledge
SYNOPSIS
package Your::Pages;
use Sledge::Plugin::XMLRPC;
sub dispatch_xmlrpc {
my $self = shift;
$self->xmlrpc;
}
sub xmlrpc_echo {
my $self = shift;
return join " ", @_;
}
sub xmlrpc_add {
my $self = shift;
my $a = shift;
my $b = shift;
return $a + $b;
}
DESCRIPTION
Sledge::Plugin::XMLRPC is easy to implement XMLRPC plugin for Sledge.
AUTHOR
MATSUNO Tokuhiro <tokuhirom at mobilefactory.jp>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.