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

NAME

 Apache::JSONRPC - mod_perl-based JSON-RPC server

SYNOPSIS

httpd.conf or htaccess

 SetHandler perl-script
 PerlHandler Apache::JSONRPC
 PerlModule MyApp::Test
 PerlSetVar dispatch_to "MyApp::Test, MyApp::Test2"
 # URL path base
 # PerlSetVar dispatch_to "MyApp/Test, MyApp/Test2"
 PerlSendHeader On

DESCRIPTION

This module inherites JSONRPC::Transport::HTTP and provides JSON-RPC (http://json-rpc.org/) server.

The ideas was borrowed from SOAP::Lite, Apache::SOAP.

Currently the modlue(JSONRPC::Transport::HTTP::Apache) does not support Apache2.

TODO

Apache2 support.

SEE ALSO

SOAP::Lite, Apache::SOAP, JSONRPC::Transport::HTTP, http://json-rpc.org/,

AUTHOR

Makamaka Hannyaharamitu, <makamaka[at]cpan.org>

COPYRIGHT AND LICENSE

Copyright 2005 by Makamaka Hannyaharamitu

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