Catalyst::Plugin::Server::XMLRPC

Catalyst::Plugin::Server::XMLRPC is a Catalyst XMLRPC server plugin.
Download

Catalyst::Plugin::Server::XMLRPC Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Jos Boumans and Michiel Ootjers
  • Publisher web site:
  • http://search.cpan.org/~michiel/

Catalyst::Plugin::Server::XMLRPC Tags


Catalyst::Plugin::Server::XMLRPC Description

Catalyst::Plugin::Server::XMLRPC is a Catalyst XMLRPC server plugin. Catalyst::Plugin::Server::XMLRPC is a Catalyst XMLRPC server plugin.SYNOPSIS package MyApp; use Catalyst qw/Server Server::XMLRPC/; package MyApp::Controller::Example; use base 'Catalyst::Controller'; sub echo : XMLRPC { # available as: example.echo my ( $self, $c, @args ) = @_; $c->stash->{xmlrpc} = join ', ', @args; } sub ping : XMLRPCPath('/ping') { # available as: ping my ( $self, $c ) = @_; $c->stash->{xmlrpc} = 'Pong'; } sub world : XMLRPCRegex(/hello/) { # available as: *hello* my ($self, $c) = @_; $c->stash->{xmlrpc} = 'World'; } sub echo : XMLRPCLocal { # available as: example.echo my ( $self, $c, @args ) = @_; $c->stash->{xmlrpc} = join ', ', @args; } sub ping : XMLRPCGlobal { # available as: ping my ( $self, $c ) = @_; $c->stash->{xmlrpc} = 'Pong'; } Requirements: · Perl


Catalyst::Plugin::Server::XMLRPC Related Software