Blame view

php/AMDA_METHODS_WSDL.php 320 Bytes
16035364   Benjamin Renard   First commit
1
2
3
4
<?php

/** 
*   @file AMDA_METHODS_WSDL.php
b8502f4d   Elena.Budnik   getStatus(), thro...
5
*   @brief PHP SoapServer for IMPEx WebServices  
16035364   Benjamin Renard   First commit
6
7
*/
 
b8502f4d   Elena.Budnik   getStatus(), thro...
8
	require_once 'config.php';
16035364   Benjamin Renard   First commit
9

b8502f4d   Elena.Budnik   getStatus(), thro...
10
11
12
13
14
	ini_set("soap.wsdl_cache_enabled", "0"); // desactive le cache WSDL
	$server = new SoapServer('../public/wsdl/Methods_AMDA.wsdl');  
	$server->setClass('WebServer');
	$server->handle();
  
16035364   Benjamin Renard   First commit
15
?>