MATSUNO★Tokuhiro > Sledge-Plugin-XMLRPC-0.01 > Sledge::Plugin::XMLRPC

Download:
Sledge-Plugin-XMLRPC-0.01.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  0
Report a bug
Module Version: 0.01   Source  

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.

SEE ALSO ^

Bundle::Sledge, Catalyst::Plugin::XMLRPC, RPC::XML