Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Blocker
-
Resolution: Fixed
-
Affects Version/s: 1.9.5
-
Fix Version/s: None
-
Component/s: Zend_Soap_Client
-
Labels:None
Description
This works :
$client = new soapClient(self::WSDL_LINK);
$this->return = $client->__call( 'getScores', array(self::CLIENT_KEY, Zend_Json::encode($this->chars)) );
This not :
$client = new Zend_Soap_Client(self::WSDL_LINK);
$this->return = $client->getScores( self::CLIENT_KEY, Zend_Json::encode($this->chars) );
Uncaught SoapFault exception: [SOAP-ENV:Client] Operation '' is not defined in the WSDL for this service in ...
I ever try it
It's the same issue. The matter is upstream. (sorry for my english)
Also, are you really sure that we must wrap params ?
thx a lot.