Lines Matching refs:methodname

3086 	var $methodname = '';  variable in soap_server
3494 …$this->debug('in invoke_method, methodname=' . $this->methodname . ' methodURI=' . $this->methodUR…
3497 if ($this->opData = $this->wsdl->getOperationData($this->methodname)) {
3498 $this->debug('in invoke_method, found WSDL operation=' . $this->methodname);
3504 $this->methodname = $this->opData['name'];
3506 $this->debug('in invoke_method, no WSDL for operation=' . $this->methodname);
3507 …$this->fault('Client', "Operation '" . $this->methodname . "' is not defined in the WSDL for this …
3519 if (strpos($this->methodname, '..') > 0) {
3521 } else if (strpos($this->methodname, '.') > 0) {
3527 if (strlen($delim) > 0 && substr_count($this->methodname, $delim) == 1 &&
3528 class_exists(substr($this->methodname, 0, strpos($this->methodname, $delim)))) {
3530 $class = substr($this->methodname, 0, strpos($this->methodname, $delim));
3531 $method = substr($this->methodname, strpos($this->methodname, $delim) + strlen($delim));
3537 if (!function_exists($this->methodname)) {
3538 $this->debug("in invoke_method, function '$this->methodname' not found!");
3540 $this->fault('Client',"method '$this->methodname' not defined in service");
3546 $this->debug("in invoke_method, method '$this->methodname' not found in class '$class'!");
3548 $this->fault('Client',"method '$this->methodname' not defined in service");
3555 if(! $this->verify_method($this->methodname,$this->methodparams)){
3560 $this->fault('Client',"Operation '$this->methodname' not defined in service.");
3567 $this->debug("in invoke_method, calling '$this->methodname'");
3571 $funcCall = "\$this->methodreturn = $this->methodname(";
3600 …$call_arg = "$this->methodname"; // straight assignment changes $this->methodname to lower case af…
3613 …$this->debug("in invoke_method, called method $this->methodname, received $this->methodreturn of t…
3628 …$this->debug('Entering serialize_return methodname: ' . $this->methodname . ' methodURI: ' . $this…
3648 $return_val = $this->wsdl->serializeRPCParameters($this->methodname,'output',$opParams);
3674 …$payload = '<'.$this->methodname.'Response xmlns="'.$this->methodURI.'">'.$return_val.'</'.$this->
3676 …$payload = '<ns1:'.$this->methodname.'Response xmlns:ns1="'.$this->methodURI.'">'.$return_val.'</n…
3684 …$payload = '<ns1:'.$this->methodname.'Response xmlns:ns1="'.$this->methodURI.'">'.$return_val.'</n…
3843 $this->methodname = $parser->root_struct_name;
3844 $this->debug('methodname: '.$this->methodname.' methodURI: '.$this->methodURI);
3893 * @param string $methodname
3899 function add_to_map($methodname,$in,$out){ argument
3900 $this->operations[$methodname] = array('name' => $methodname,'in' => $in,'out' => $out);