pour déploiement auto v2 via gitlab
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?php
|
|
|
|
|
|
require_once dirname(__FILE__) . '../../../../base/php/Amfphp/ClassLoader.php';
|
|
|
$config = new Amfphp_Core_Config();
|
|
|
$config->serviceFolderPaths = array(dirname(__FILE__) . '/services/');
|
|
|
//$config->pluginsConfig['AmfphpCustomClassConverter'] = array('customClassFolderPaths' => array(dirname(__FILE__) . '/Services/Vo'));
|
|
|
$gateway = Amfphp_Core_HttpRequestGatewayFactory::createGateway($config);
|
|
|
$gateway->service();
|
|
|
$gateway->output();
|
|
|
|
|
|
?>
|