Lines Matching refs:xml_encoding

3104 	var $xml_encoding = '';  variable in soap_server
3342 $this->xml_encoding = strtoupper($enc);
3344 $this->xml_encoding = 'US-ASCII';
3348 $this->xml_encoding = 'ISO-8859-1';
3371 $this->xml_encoding = strtoupper($enc);
3373 $this->xml_encoding = 'US-ASCII';
3377 $this->xml_encoding = 'ISO-8859-1';
3405 $this->xml_encoding = strtoupper($enc);
3407 $this->xml_encoding = 'US-ASCII';
3411 $this->xml_encoding = 'ISO-8859-1';
3449 $this->debug('got character encoding: '.$this->xml_encoding);
3822 $this->xml_encoding = strtoupper($enc);
3824 $this->xml_encoding = 'US-ASCII';
3828 $this->xml_encoding = 'ISO-8859-1';
3830 $this->debug('Use encoding: ' . $this->xml_encoding . ' when creating soap_parser');
3832 $parser = new soap_parser($data,$this->xml_encoding,'',$this->decode_utf8);
5803 var $xml_encoding = ''; variable in soap_parser
5847 $this->xml_encoding = $encoding;
5858 $xml_encoding = $res[1];
5859 if (strtoupper($xml_encoding) != $encoding) {
5860 …ent-Type '" . $encoding . "' does not match encoding from XML declaration '" . $xml_encoding . "'";
5862 if ($encoding != 'ISO-8859-1' || strtoupper($xml_encoding) != 'UTF-8') {
5878 $this->parser = xml_parser_create($this->xml_encoding);
5882 xml_parser_set_option($this->parser, XML_OPTION_TARGET_ENCODING, $this->xml_encoding);
6193 if ($this->xml_encoding=='UTF-8'){
6422 var $xml_encoding = ''; // character set encoding of incoming (response) messages variable in soapclient
6828 $this->xml_encoding = strtoupper($enc);
6830 $this->xml_encoding = 'US-ASCII';
6834 $this->xml_encoding = 'ISO-8859-1';
6836 $this->debug('Use encoding: ' . $this->xml_encoding . ' when creating soap_parser');
6837 $parser = new soap_parser($data,$this->xml_encoding,$this->operation,$this->decode_utf8);