NAME

RPC::Any::Server::JSONRPC::CGI - A JSON-RPC server for a CGI environment

SYNOPSIS

 use RPC::Any::Server::JSONRPC::CGI;
 # Create a server where calling Foo.bar will call My::Module->bar.
 my $server = RPC::Any::Server::JSONRPC::CGI->new(
    dispatch  => { 'Foo' => 'My::Module' },
    allow_get => 0,
 );
 # Read JSON from STDIN, headers from the environment. Print result,
 # including HTTP headers for a CGI environment, to STDOUT.
 print $server->handle_input();

 # HTTP & CGI servers also take HTTP::Request objects, if you want.
 my $request = HTTP::Request->new(POST => '/');
 $request->content('<?xml ... ');
 print $server->handle_input($request);

DESCRIPTION

This is a subclass of RPC::Any::Server::JSONRPC::HTTP that has the functionality described in RPC::Any::Interface::CGI. Baically, it's just like the HTTP server, but it works properly in a CGI environment (where HTTP headers are in environment variables instead of on STDIN).