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


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


TRANSITION PLAN

In the next large update version, JSON and JSONRPC modules are split.

  JSONRPC* and Apache::JSONRPC are deleted from JSON dist.
  JSONRPC::Client, JSONRPC::Server and JSONRPC::Procedure in JSON::RPC dist.
  Modules in JSON::RPC dist supports JSONRPC protocol v1.1 and 1.0.


DESCRIPTION

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

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

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


TODO

Apache2 support.


SEE ALSO

the SOAP::Lite manpage, the Apache::SOAP manpage, the JSONRPC::Transport::HTTP manpage, 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.

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