Newer
Older
umgamf / xmlrpc.php
@reddawg reddawg on 5 Jun 2008 217 bytes UMG AMF
<?php

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

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