, * Andreas Oesterreicher and * Karl Burkhart . */ header("Cache-Control: no-cache"); header("Cache-Control: post-check=0, pre-check=0",false); header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Pragma: no-cache"); require_once('../config/vilesci.config.inc.php'); $SOAPServer = new SoapServer(APP_ROOT."soap/test.wsdl.php?".microtime(true)); $SOAPServer->addFunction("myTest"); $SOAPServer->handle(); // WSDL Chache auf aus ini_set("soap.wsdl_cache_enabled", "0"); function myTest($foo) { if($foo=='foo') return 'OK'; else return new SoapFault("Server", 'bar'); } ?>