The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

RPC::Any::Server::XMLRPC::PSGI - XML-RPC server for a PSGI environment

SYNOPSIS

  # in app.psgi
  use RPC::Any::Server::XMLRPC::PSGI;

  # Create a server where calling Foo.bar will call My::Module->bar.
  my $server = RPC::Any::Server::XMLRPC::PSGI->new(
      dispatch  => { 'Foo' => 'My::Module' },
      allow_get => 0,
  );

  my $handler = sub{ $server->handle_input(@_) };

DESCRIPTION

This is a subclass of RPC::Any::Server::XMLRPC::HTTP that has the functionality described in RPC::Any::Interface::PSGI.

AUTHOR

Sherwin Daganato <sherwin@daganato.com>

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

RPC::Any::Server::XMLRPC::HTTP RPC::Any::Interface::PSGI