I'm trying to use a method 'importData' in a service via SOAP, but the server (PEAR/SOAP/Server.php) returns method "http://schemas.xmlsoap.org/soap/envelope/importData" not defined in service everytime.
I'm pretty sure that the method importData is defined properly:
Code: Select all
$this->__dispatch_map['importData'] = array('in' => array(
'data' => 'Array'
),
'out' => array(
'result' => 'Array'
));
public function importData($data){
/* Some content is here. */
}
Any suggestion?
I will be glad of any answer. Thanks!