1. Import

This commit is contained in:
2026-03-29 10:34:57 +02:00
parent b0e00c1259
commit a1129565af
4899 changed files with 3007593 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<?php
// include_once ("../include/mcglobal.inc.php");
// include_once ("../include/inc_parseXML.inc.php");
$wsdl = "webservice1.wsdl";
// $wsdl = "z_rst_test_tourenplanung_bnd.wsdl";
function getServerTime() {
return time();
}
ini_set("soap.wsdl_cache_enabled", "0");
$server = new SoapServer($wsdl);
$server->addFunction("getServerTime");
$server->handle();
/*
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$server->handle();
} else {
echo "This SOAP server can handle following functions: ";
$functions = $server->getFunctions();
foreach($functions as $func) {
echo $func . "\n";
}
}
*/
?>