решаемая.
Faiure:
class MySoap extends SoapClient {
public function __construct($wsdl = null, $options = null) {
parent::__construct($wsdl = null, $options = null);
$header = new SoapHeader();
$this->__setSoapHeaders($header);
}
}
Успех
class MySoap extends SoapClient {
private $_myHeader;
public function __construct($wsdl = null, $options = null) {
parent::__construct($wsdl = null, $options = null);
$this->_myHeader = new SoapHeader();
$this->__setSoapHeaders($this->_myHeader);
}
}
Это будет все ...