Lines Matching refs:methodname

3473 	var $methodname = '';  variable in nusoap_server
3881 …$this->debug('in invoke_method, methodname=' . $this->methodname . ' methodURI=' . $this->methodUR…
3885 $data = split("_", $this->methodname);
3900 if ($this->opData = $this->wsdl->getOperationData($this->methodname)) {
3901 $this->debug('in invoke_method, found WSDL operation=' . $this->methodname);
3907 $this->methodname = $this->opData['name'];
3909 $this->debug('in invoke_method, no WSDL for operation=' . $this->methodname);
3910 …$this->fault('SOAP-ENV:Client', "Operation '" . $this->methodname . "' is not defined in the WSDL …
3922 if (strpos($this->methodname, '..') > 0) {
3924 } else if (strpos($this->methodname, '.') > 0) {
3926 } else if (strpos($this->methodname, '_') > 0) {
3932 if (strlen($delim) > 0 && substr_count($this->methodname, $delim) == 1 &&
3933 class_exists(substr($this->methodname, 0, strpos($this->methodname, $delim)))) {
3935 $class = substr($this->methodname, 0, strpos($this->methodname, $delim));
3936 $method = substr($this->methodname, strpos($this->methodname, $delim) + strlen($delim));
3942 if (!function_exists($this->methodname)) {
3943 $this->debug("in invoke_method, function '$this->methodname' not found!");
3946 …s->fault('SOAP-ENV:Client',"method '$this->methodname' not defined in service methodname=' . $this…
3952 $this->debug("in invoke_method, method '$this->methodname' not found in class '$class'!");
3954 $this->fault('SOAP-ENV:Client',"method '$this->methodname' not defined in service");
3961 if(! $this->verify_method($this->methodname,$this->methodparams)){
3966 $this->fault('SOAP-ENV:Client',"Operation '$this->methodname' not defined in service.");
3973 $this->debug("in invoke_method, calling '$this->methodname'");
3977 $funcCall = "\$this->methodreturn = $this->methodname(";
4006 …$call_arg = "$this->methodname"; // straight assignment changes $this->methodname to lower case af…
4029 …$this->debug("in invoke_method, called method $this->methodname, received data of type ".gettype($…
4044 …$this->debug('Entering serialize_return methodname: ' . $this->methodname . ' methodURI: ' . $this…
4068 $return_val = $this->wsdl->serializeRPCParameters($this->methodname,'output',$opParams);
4095 …$payload = '<ns1:'.$this->methodname.'Response xmlns:ns1="'.$this->methodURI.'">'.$return_val.'</n…
4097 …$payload = '<ns1:'.$this->methodname.'Response xmlns:ns1="'.$this->methodURI.'">'.$return_val.'</n…
4105 …$payload = '<ns1:'.$this->methodname.'Response xmlns:ns1="'.$this->methodURI.'">'.$return_val.'</n…
4272 $this->methodname = $parser->root_struct_name;
4273 $this->debug('methodname: '.$this->methodname.' methodURI: '.$this->methodURI);
4324 * @param string $methodname
4330 function add_to_map($methodname,$in,$out){ argument
4331 $this->operations[$methodname] = array('name' => $methodname,'in' => $in,'out' => $out);