Server-side XML-RPC On the server side, you can either embed the XML-RPC library into an existing server framework, or use the built-in special purpose HTTP server. Let's first look at how to register handler objects to tell an XML-RPC server how to map incoming requests to actual methods. XML-RPC Handler Objects The org.apache.xmlrpc.XmlRpcServer and org.apache.xmlrpc.WebServer classes provide ..