Apache::JSONRPC - mod_perl-based JSON-RPC server |
Apache::JSONRPC - mod_perl-based JSON-RPC server
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
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.
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.
Apache2 support.
the SOAP::Lite manpage, the Apache::SOAP manpage, the JSONRPC::Transport::HTTP manpage, http://json-rpc.org/,
Makamaka Hannyaharamitu, <makamaka[at]cpan.org>
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 |