Ho creato un semplice web service PHP e testato in locale con apahe, tutto ok.
Ho copiato i file Index.php e test.wsdl su altervista, il risultato č un errore:
Fatal error: Class 'SoapServer' not found in /membri/kto/index.php on line 10
file index.php:
Codice PHP:
<?php
/**
* Server SOAP
* @author Davide Ferrero
*/
function sayHello($name){
$salutation="Ciao ".$name.", sarai lieto di sapere che sto funzionando!";
return $salutation;
}
$server= new SoapServer("test.wsdl");
$server->addFunction("sayHello");
$server->handle();
?>
che sbaglio?