mod_xmlrpc2 - Module for Apache2 that provides an XMLRPC server

mod_xmlrpc2 implements an XMLRPC server within Apache, as a handler.
XMLRPC server methods are handled in loadable shared binaries (in C).
In order to enable it, simply do something like:

XMLRPCServerPath /lib/modules/xmlrpc-server
<Location /xmlrpc>
	SetHandler xml-rpc
</Location>

This tells apache to use the XMLRPC handler for all requests to
/xmlrpc.  All shared objects in /lib/modules/xmlrpc-server will be
loaded, and if a structure named `mod_xmlrpc_register' exists, it will
be used to load XMLRPC server methods.  Server methods should take and
return the same args that a normal libxmlrpc-c server method would
take and return (see xmlrpc-c's overview.txt for information on how
xmlrpc functions should be written).  Examples modules are provided
in the examples subdirectory.

Andres Salomon <dilinger@voxel.net>  Wed, 07 Jul 2004 19:16:14 -0400

