The web service is called, the browser shows the following error:
Class 'SoapServer' not found...
Does anyone have any idea on it?
PHP and SOAP are installed/enabled on Apache server.
the message returned by phpinfo() about SOAP is:
Soap Client => enabled
Soap Server => enabled
Directive => Local Value => Master Value soap.wsdl_cache => 1 => 1 soap.wsdl_cache_dir => /tmp => /tmp soap.wsdl_cache_enabled => 1 => 1 soap.wsdl_cache_limit => 5 => 5 soap.wsdl_cache_ttl => 86400 => 86400
It's a web service without WSDL. In php file,
$server = new SoapServer(null,array('uri' => 'aa.bb.com/test.php'));
$server->addClass('add_account');
$server->handle();