Lines Matching refs:message

608     * @return string the message
1030 var $message = array(); variable in XMLSchema
1155 $this->message[$pos] = array('cdata' => '');
1482 $this->message[$pos]['cdata'] .= $data;
4081 var $message = array(); variable in wsdl
4353 $this->message[$pos] = array('cdata' => '');
4579 if (isset($this->message[$pos]['cdata'])) {
4580 $this->message[$pos]['cdata'] .= $data;
5748 'message' => $name . 'Request',
5754 'message' => $name . 'Response',
5816 var $message = array(); variable in soap_parser
5901 $this->soapresponse = $this->message[$this->root_struct]['result'];
5941 $this->message[$pos] = array('pos' => $pos,'children'=>'','cdata'=>'');
5944 $this->message[$pos]['depth'] = $this->depth++;
5948 $this->message[$this->parent]['children'] .= '|'.$pos;
5951 $this->message[$pos]['parent'] = $this->parent;
5977 $this->message[$pos]['type'] = 'struct';
5981 $this->message[$pos]['status'] = $this->status;
5983 $this->message[$pos]['name'] = htmlspecialchars($name);
5985 $this->message[$pos]['attrs'] = $attrs;
6008 $this->message[$pos]['type'] = $value_localpart;
6009 $this->message[$pos]['typePrefix'] = $value_prefix;
6011 $this->message[$pos]['type_namespace'] = $this->namespaces[$value_prefix];
6013 $this->message[$pos]['type_namespace'] = $attrs['xmlns:'.$value_prefix];
6017 $this->message[$pos]['type'] = 'array';
6028 $this->message[$pos]['typePrefix'] = $regs[1];
6029 $this->message[$pos]['arrayTypePrefix'] = $regs[1];
6031 $this->message[$pos]['arrayTypeNamespace'] = $this->namespaces[$regs[1]];
6033 $this->message[$pos]['arrayTypeNamespace'] = $attrs['xmlns:'.$regs[1]];
6035 $this->message[$pos]['arrayType'] = $regs[2];
6036 $this->message[$pos]['arraySize'] = $regs[3];
6037 $this->message[$pos]['arrayCols'] = $regs[4];
6041 $this->message[$pos]['nil'] = ($value == 'true' || $value == '1');
6044 $this->message[$pos]['xattrs']['!' . $key] = $value;
6066 $this->message[$pos]['namespace'] = $this->namespaces[$prefix];
6069 $this->message[$pos]['namespace'] = $this->default_namespace;
6102 if(isset($this->message[$pos]['attrs']['href'])){
6104 $id = substr($this->message[$pos]['attrs']['href'],1);
6108 $this->message[$pos]['result'] =& $this->multirefs[$id][$pos];
6110 } elseif($this->message[$pos]['children'] != ''){
6112 if(!isset($this->message[$pos]['result'])){
6113 $this->message[$pos]['result'] = $this->buildVal($pos);
6116 } elseif (isset($this->message[$pos]['xattrs'])) {
6117 if (isset($this->message[$pos]['nil']) && $this->message[$pos]['nil']) {
6118 $this->message[$pos]['xattrs']['!'] = null;
6119 } elseif (isset($this->message[$pos]['cdata']) && trim($this->message[$pos]['cdata']) != '') {
6120 if (isset($this->message[$pos]['type'])) {
6121message[$pos]['xattrs']['!'] = $this->decodeSimple($this->message[$pos]['cdata'], $this->message[$…
6123 $parent = $this->message[$pos]['parent'];
6124 …if (isset($this->message[$parent]['type']) && ($this->message[$parent]['type'] == 'array') && isse…
6125message[$pos]['xattrs']['!'] = $this->decodeSimple($this->message[$pos]['cdata'], $this->message[$…
6127 $this->message[$pos]['xattrs']['!'] = $this->message[$pos]['cdata'];
6131 $this->message[$pos]['result'] = $this->message[$pos]['xattrs'];
6135 if (isset($this->message[$pos]['nil']) && $this->message[$pos]['nil']) {
6136 $this->message[$pos]['xattrs']['!'] = null;
6137 } elseif (isset($this->message[$pos]['type'])) {
6138message[$pos]['result'] = $this->decodeSimple($this->message[$pos]['cdata'], $this->message[$pos][…
6140 $parent = $this->message[$pos]['parent'];
6141 …if (isset($this->message[$parent]['type']) && ($this->message[$parent]['type'] == 'array') && isse…
6142message[$pos]['result'] = $this->decodeSimple($this->message[$pos]['cdata'], $this->message[$paren…
6144 $this->message[$pos]['result'] = $this->message[$pos]['cdata'];
6172 $this->root_struct_namespace = $this->message[$pos]['namespace'];
6181 $this->parent = $this->message[$pos]['parent'];
6201 $this->message[$pos]['cdata'] .= $data;
6284 if(!isset($this->message[$pos]['type'])){
6285 $this->message[$pos]['type'] = '';
6287 …$this->debug('in buildVal() for '.$this->message[$pos]['name']."(pos $pos) of type ".$this->messag…
6289 if($this->message[$pos]['children'] != ''){
6291 $children = explode('|',$this->message[$pos]['children']);
6294 if(isset($this->message[$pos]['arrayCols']) && $this->message[$pos]['arrayCols'] != ''){
6299 $params[$r][] = $this->message[$child_pos]['result'];
6301 if($c == $this->message[$pos]['arrayCols']){
6307 } elseif($this->message[$pos]['type'] == 'array' || $this->message[$pos]['type'] == 'Array'){
6308 $this->debug('in buildVal, adding array '.$this->message[$pos]['name']);
6310 $params[] = &$this->message[$child_pos]['result'];
6313 …} elseif($this->message[$pos]['type'] == 'Map' && $this->message[$pos]['type_namespace'] == 'http:…
6332 $params[] = &$this->message[$child_pos]['result'];
6334 if (isset($params[$this->message[$child_pos]['name']])) {
6336 …if ((!is_array($params[$this->message[$child_pos]['name']])) || (!isset($params[$this->message[$ch…
6337 … $params[$this->message[$child_pos]['name']] = array($params[$this->message[$child_pos]['name']]);
6339 … $params[$this->message[$child_pos]['name']][] = &$this->message[$child_pos]['result'];
6341 $params[$this->message[$child_pos]['name']] = &$this->message[$child_pos]['result'];
6346 if (isset($this->message[$pos]['xattrs'])) {
6348 foreach ($this->message[$pos]['xattrs'] as $n => $v) {
6353 if (isset($this->message[$pos]['cdata']) && trim($this->message[$pos]['cdata']) != '') {
6355 if (isset($this->message[$pos]['type'])) {
6356 …codeSimple($this->message[$pos]['cdata'], $this->message[$pos]['type'], isset($this->message[$pos]…
6358 $parent = $this->message[$pos]['parent'];
6359 …if (isset($this->message[$parent]['type']) && ($this->message[$parent]['type'] == 'array') && isse…
6360 …ple($this->message[$pos]['cdata'], $this->message[$parent]['arrayType'], isset($this->message[$par…
6362 $params['!'] = $this->message[$pos]['cdata'];
6369 $cdata = isset($this->message[$pos]['cdata']) ? $this->message[$pos]['cdata'] : '';
6370 if (isset($this->message[$pos]['type'])) {
6371 …this->decodeSimple($cdata, $this->message[$pos]['type'], isset($this->message[$pos]['type_namespac…
6373 $parent = $this->message[$pos]['parent'];
6374 …if (isset($this->message[$parent]['type']) && ($this->message[$parent]['type'] == 'array') && isse…
6375 …codeSimple($cdata, $this->message[$parent]['arrayType'], isset($this->message[$parent]['arrayTypeN…
6377 return $this->message[$pos]['cdata'];