Lines Matching refs:operation

4217 	* @param	string	$operation	The operation to be invoked
4222 function verify_method($operation,$request){ argument
4224 if($this->wsdl->getOperationData($operation)){
4227 } elseif(isset($this->operations[$operation])){
4673 foreach($bindingData['operations'] as $operation => $data) {
4674 $this->debug('post-parse data gathering for ' . $operation);
4675 $this->bindings[$binding]['operations'][$operation]['input'] =
4676 isset($this->bindings[$binding]['operations'][$operation]['input']) ?
4677 …is->bindings[$binding]['operations'][$operation]['input'], $this->portTypes[ $bindingData['portTyp…
4678 $this->portTypes[ $bindingData['portType'] ][$operation]['input'];
4679 $this->bindings[$binding]['operations'][$operation]['output'] =
4680 isset($this->bindings[$binding]['operations'][$operation]['output']) ?
4681 …is->bindings[$binding]['operations'][$operation]['output'], $this->portTypes[ $bindingData['portTy…
4682 $this->portTypes[ $bindingData['portType'] ][$operation]['output'];
4683 …if(isset($this->messages[ $this->bindings[$binding]['operations'][$operation]['input']['message'] …
4684 …s[$binding]['operations'][$operation]['input']['parts'] = $this->messages[ $this->bindings[$bindin…
4686 …if(isset($this->messages[ $this->bindings[$binding]['operations'][$operation]['output']['message']…
4687 …s[$binding]['operations'][$operation]['output']['parts'] = $this->messages[ $this->bindings[$bindi…
4690 …if (isset($bindingData['style']) && !isset($this->bindings[$binding]['operations'][$operation]['st…
4691 … $this->bindings[$binding]['operations'][$operation]['style'] = $bindingData['style'];
4693 …$this->bindings[$binding]['operations'][$operation]['transport'] = isset($bindingData['transport']…
4694operation]['documentation'] = isset($this->portTypes[ $bindingData['portType'] ][$operation]['docu…
4695 …$this->bindings[$binding]['operations'][$operation]['endpoint'] = isset($bindingData['endpoint']) …
5123 * @param string $operation name of operation
5128 function getOperationData($operation, $bindingType = 'soap') argument
5143 if ($operation == $bOperation) {
5144 $opData = $this->bindings[ $portData['binding'] ]['operations'][$operation];
5612 * @param string $operation operation name
5619 function serializeRPCParameters($operation, $direction, $parameters, $bindingType = 'soap') { argument
5620 …$this->debug("in serializeRPCParameters: operation=$operation, direction=$direction, XMLSchemaVers…
5628 if (!$opData = $this->getOperationData($operation, $bindingType)) {
5629 …$this->debug('Unable to retrieve WSDL data for operation: ' . $operation . ' bindingType: ' . $bin…
5630 …$this->setError('Unable to retrieve WSDL data for operation: ' . $operation . ' bindingType: ' . $…
5706 * @param string $operation operation name
5713 function serializeParameters($operation, $direction, $parameters) argument
5715 …$this->debug("in serializeParameters: operation=$operation, direction=$direction, XMLSchemaVersion…
5723 if (!$opData = $this->getOperationData($operation)) {
5724 $this->debug('Unable to retrieve WSDL data for operation: ' . $operation);
5725 $this->setError('Unable to retrieve WSDL data for operation: ' . $operation);
7201 * @param string $operation SOAP server URL or path
7223 …function call($operation,$params=array(),$namespace='http://tempuri.org',$soapAction='',$headers=f… argument
7297 $this->setError( 'operation '.$operation.' not present.');
7298 $this->debug("operation '$operation' not present.");
7332 $payload = "<$nsPrefix:$operation xmlns:$nsPrefix=\"$namespace\">" .
7334 "</$nsPrefix:$operation>";
7336 $payload = "<$operation>" . $payload . "</$operation>";
7341 $payload = "<$nsPrefix:$operation xmlns:$nsPrefix=\"$namespace\">" .
7343 "</$nsPrefix:$operation>";
7345 $payload = "<$operation>" .
7347 "</$operation>";
7442 * @param string $operation operation name
7446 function getOperationData($operation){ argument
7452 if(isset($this->operations[$operation])){
7453 return $this->operations[$operation];
7455 $this->debug("No data for operation: $operation");
7571 $parser = new nusoap_parser($data,$this->xml_encoding,$this->operation,$this->decode_utf8);
7819 foreach ($this->operations as $operation => $opData) {
7820 if ($operation != '') {
7843 …return \$this->call('$operation', \$params, '".$opData['namespace']."', '".(isset($opData['soapAct…