Lines Matching refs:xml_encoding

3491 	var $xml_encoding = '';  variable in nusoap_server
3729 $this->xml_encoding = strtoupper($enc);
3731 $this->xml_encoding = 'US-ASCII';
3735 $this->xml_encoding = 'ISO-8859-1';
3758 $this->xml_encoding = strtoupper($enc);
3760 $this->xml_encoding = 'US-ASCII';
3764 $this->xml_encoding = 'ISO-8859-1';
3792 $this->xml_encoding = strtoupper($enc);
3794 $this->xml_encoding = 'US-ASCII';
3798 $this->xml_encoding = 'ISO-8859-1';
3836 $this->debug('got character encoding: '.$this->xml_encoding);
4251 $this->xml_encoding = strtoupper($enc);
4253 $this->xml_encoding = 'US-ASCII';
4257 $this->xml_encoding = 'ISO-8859-1';
4259 $this->debug('Use encoding: ' . $this->xml_encoding . ' when creating nusoap_parser');
4261 $parser = new nusoap_parser($data,$this->xml_encoding,'',$this->decode_utf8);
6450 var $xml_encoding = ''; variable in nusoap_parser
6495 $this->xml_encoding = $encoding;
6506 $xml_encoding = $res[1];
6507 if (strtoupper($xml_encoding) != $encoding) {
6508 …ent-Type '" . $encoding . "' does not match encoding from XML declaration '" . $xml_encoding . "'";
6510 if ($encoding != 'ISO-8859-1' || strtoupper($xml_encoding) != 'UTF-8') {
6526 $this->parser = xml_parser_create($this->xml_encoding);
6530 xml_parser_set_option($this->parser, XML_OPTION_TARGET_ENCODING, $this->xml_encoding);
6845 if ($this->xml_encoding=='UTF-8'){
7110 var $xml_encoding = ''; // character set encoding of incoming (response) messages variable in nusoap_client
7562 $this->xml_encoding = strtoupper($enc);
7564 $this->xml_encoding = 'US-ASCII';
7568 $this->xml_encoding = 'ISO-8859-1';
7570 $this->debug('Use encoding: ' . $this->xml_encoding . ' when creating nusoap_parser');
7571 $parser = new nusoap_parser($data,$this->xml_encoding,$this->operation,$this->decode_utf8);