Home
last modified time | relevance | path

Searched refs:outgoing_headers (Results 1 – 4 of 4) sorted by relevance

/plugin/mantis/lib/
Dclass.soap_server.php95 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);
[all …]
Dclass.soap_transport_http.php27 var $outgoing_headers = array(); variable in soap_transport_http
94 $this->outgoing_headers[$name] = $value;
105 if (isset($this->outgoing_headers[$name])) {
107 unset($this->outgoing_headers[$name]);
556 if (!isset($this->outgoing_headers['Connection'])) {
707 foreach($this->outgoing_headers as $k => $v){
758 foreach($this->outgoing_headers as $k => $v){
1181 if (isset($this->outgoing_headers['Accept-Encoding'])) {
Dnusoap.php2134 var $outgoing_headers = array(); variable in soap_transport_http
2201 $this->outgoing_headers[$name] = $value;
2212 if (isset($this->outgoing_headers[$name])) {
2214 unset($this->outgoing_headers[$name]);
2663 if (!isset($this->outgoing_headers['Connection'])) {
2814 foreach($this->outgoing_headers as $k => $v){
2865 foreach($this->outgoing_headers as $k => $v){
3288 if (isset($this->outgoing_headers['Accept-Encoding'])) {
3504 var $outgoing_headers = array(); variable in nusoap_server
4146 $this->outgoing_headers[] = "HTTP/1.0 500 Internal Server Error";
[all …]
/plugin/googlesearch/
Dnusoap.php2018 var $outgoing_headers = array(); variable in soap_transport_http
2045 $this->outgoing_headers['User-Agent'] = $this->title.'/'.$this->version.' ('.$rev[1].')';
2046 $this->debug('set User-Agent: ' . $this->outgoing_headers['User-Agent']);
2077 $this->outgoing_headers['Host'] = $this->host;
2079 $this->outgoing_headers['Host'] = $this->host.':'.$this->port;
2081 $this->debug('set Host: ' . $this->outgoing_headers['Host']);
2177 $this->outgoing_headers['Connection'] = 'close';
2178 $this->debug('set Connection: ' . $this->outgoing_headers['Connection']);
2301 …$this->outgoing_headers['Authorization'] = 'Basic '.base64_encode(str_replace(':','',$username).':…
2342 …$this->outgoing_headers['Authorization'] = 'Digest username="' . $username . '", realm="' . $diges…
[all …]