Lines Matching refs:methodname
64 var $methodname = ''; variable in nusoap_server
472 …$this->debug('in invoke_method, methodname=' . $this->methodname . ' methodURI=' . $this->methodUR…
475 if ($this->opData = $this->wsdl->getOperationData($this->methodname)) {
476 $this->debug('in invoke_method, found WSDL operation=' . $this->methodname);
482 $this->methodname = $this->opData['name'];
484 $this->debug('in invoke_method, no WSDL for operation=' . $this->methodname);
485 …$this->fault('SOAP-ENV:Client', "Operation '" . $this->methodname . "' is not defined in the WSDL …
496 $method = $this->methodname; //TODO FIXME HELP this is absolutely hardcoded!!!
498 if (strpos($this->methodname, '..') > 0) {
500 } else if (strpos($this->methodname, '.') > 0) {
502 } else if (strpos($this->methodname, '_') > 0) {
508 if (strlen($delim) > 0 && substr_count($this->methodname, $delim) == 1 &&
509 class_exists(substr($this->methodname, 0, strpos($this->methodname, $delim)))) {
511 $class = substr($this->methodname, 0, strpos($this->methodname, $delim));
512 $method = substr($this->methodname, strpos($this->methodname, $delim) + strlen($delim));
518 if (!function_exists($this->methodname)) {
519 $this->debug("in invoke_method, function '$this->methodname' not found!");
521 $this->fault('SOAP-ENV:Client',"method '$this->methodname' not defined in service");
527 $this->debug("in invoke_method, method '$this->methodname' not found in class '$class'!");
529 $this->fault('SOAP-ENV:Client',"method '$this->methodname' not defined in service");
536 if(! $this->verify_method($this->methodname,$this->methodparams)){
541 $this->fault('SOAP-ENV:Client',"Operation '$this->methodname' not defined in service.");
548 $this->debug("in invoke_method, calling '$this->methodname'");
552 $funcCall = "\$this->methodreturn = $this->methodname(";
581 …$call_arg = "$this->methodname"; // straight assignment changes $this->methodname to lower case af…
598 …$this->debug("in invoke_method, called method $this->methodname, received data of type ".gettype($…
613 …$this->debug('Entering serialize_return methodname: ' . $this->methodname . ' methodURI: ' . $this…
637 $return_val = $this->wsdl->serializeRPCParameters($this->methodname,'output',$opParams);
664 …$payload = '<ns1:'.$this->methodname.'Response xmlns:ns1="'.$this->methodURI.'">'.$return_val.'</n…
666 …$payload = '<ns1:'.$this->methodname.'Response xmlns:ns1="'.$this->methodURI.'">'.$return_val.'</n…
674 …$payload = '<ns1:'.$this->methodname.'Response xmlns:ns1="'.$this->methodURI.'">'.$return_val.'</n…
834 $this->methodname = $parser->root_struct_name;
835 $this->debug('methodname: '.$this->methodname.' methodURI: '.$this->methodURI);
886 * @param string $methodname
892 function add_to_map($methodname,$in,$out){ argument
893 $this->operations[$methodname] = array('name' => $methodname,'in' => $in,'out' => $out);