Lines Matching refs:outgoing_headers
95 var $outgoing_headers = array(); variable in nusoap_server
708 $this->outgoing_headers[] = "HTTP/1.0 500 Internal Server Error";
709 $this->outgoing_headers[] = "Status: 500 Internal Server Error";
722 $this->outgoing_headers[] = "Server: $this->title Server v$this->version";
724 $this->outgoing_headers[] = "X-SOAP-Server: $this->title/$this->version (".$rev[1].")";
730 $this->outgoing_headers[] = "Content-Type: $type" . ($charset ? '; charset=' . $charset : '');
740 $this->outgoing_headers[] = "Content-Encoding: gzip";
755 $this->outgoing_headers[] = "Content-Encoding: deflate";
765 $this->outgoing_headers[] = "Content-Length: ".strlen($payload);
766 reset($this->outgoing_headers);
767 foreach($this->outgoing_headers as $hdr){
772 $this->response = join("\r\n",$this->outgoing_headers)."\r\n\r\n".$payload;