Ben olsun "[haber] çocuk 26701 çıkış sinyali segmentasyon hatası pid (11)" Ben standart php sabun kütüphanesi kullanarak basit bir sabun isteği yapmak için çalışacağız apache günlüğüne.
Ben Centos 5.4 üzerinde php 5.1.6 koşuyorum
				Çözüldü.
Faiure:
class MySoap extends SoapClient {
    public function __construct($wsdl = null, $options = null) {
        parent::__construct($wsdl = null, $options = null);
        $header = new SoapHeader();
        $this->__setSoapHeaders($header);            
    }
}
Success:
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);            
    }
}
Hepsi olacak ...