NAME
RPC::Any::Server::XMLRPC::PSGI - XML-RPC server for a PSGI environment
SYNOPSIS
# in app.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.