Newer
Older
ubixonline_com_web / docroot / amfphp / xmlrpc.php
@reddawg reddawg on 20 Mar 2008 217 bytes UbixOnline Web Site
<?php

	/**
	 * XML-RPC server
	 */
	include("globals.php");

	include "core/xmlrpc/app/Gateway.php";
	
	$gateway = new Gateway();
	
	$gateway->setBaseClassPath($servicesPath);
	
	$gateway->service();
?>