Is it possible to change the XML-RPC server path into an user defined path? Is it possible to change the XML-RPC server path into an user defined path?
Whenever we call the function in server through XML-RPC, it will try to get the function name into the server default path (Say for an example it will search in /usr/local/apache/htdocs/). But if my server XML-RPC file is in /home/ path how can i access the file?
Example Code:
= = = = = = =
$client = new dom_xmlrpc_client('http://203.129.254.126','/codebase/php/temp/getGroupList.php');
$client->setResponseType("array");
$myMethodCall =& new dom_xmlrpc_methodcall("getClass.getGroupList");
In this code it will try to fetch the details into "/usr/local/apache/htdocs/codebase/php/", If my server program resides in say "/home/example/path/". How can i access this program? |