Lines Matching refs:operation

3788 	* @param	string	$operation	The operation to be invoked
3793 function verify_method($operation,$request){ argument
3795 if($this->wsdl->getOperationData($operation)){
3798 } elseif(isset($this->operations[$operation])){
4200 foreach($bindingData['operations'] as $operation => $data) {
4201 $this->debug('post-parse data gathering for ' . $operation);
4202 $this->bindings[$binding]['operations'][$operation]['input'] =
4203 isset($this->bindings[$binding]['operations'][$operation]['input']) ?
4204 …is->bindings[$binding]['operations'][$operation]['input'], $this->portTypes[ $bindingData['portTyp…
4205 $this->portTypes[ $bindingData['portType'] ][$operation]['input'];
4206 $this->bindings[$binding]['operations'][$operation]['output'] =
4207 isset($this->bindings[$binding]['operations'][$operation]['output']) ?
4208 …is->bindings[$binding]['operations'][$operation]['output'], $this->portTypes[ $bindingData['portTy…
4209 $this->portTypes[ $bindingData['portType'] ][$operation]['output'];
4210 …if(isset($this->messages[ $this->bindings[$binding]['operations'][$operation]['input']['message'] …
4211 …s[$binding]['operations'][$operation]['input']['parts'] = $this->messages[ $this->bindings[$bindin…
4213 …if(isset($this->messages[ $this->bindings[$binding]['operations'][$operation]['output']['message']…
4214 …s[$binding]['operations'][$operation]['output']['parts'] = $this->messages[ $this->bindings[$bindi…
4217 … $this->bindings[$binding]['operations'][$operation]['style'] = $bindingData['style'];
4219 …$this->bindings[$binding]['operations'][$operation]['transport'] = isset($bindingData['transport']…
4220operation]['documentation'] = isset($this->portTypes[ $bindingData['portType'] ][$operation]['docu…
4221 …$this->bindings[$binding]['operations'][$operation]['endpoint'] = isset($bindingData['endpoint']) …
4644 if ($operation == $bOperation) {
4645 $opData = $this->bindings[ $portData['binding'] ]['operations'][$operation];
4835 Click on an operation name to view it&apos;s details.</p>
5010 * @param string $operation operation name
5016 function serializeRPCParameters($operation, $direction, $parameters) argument
5018 …$this->debug("in serializeRPCParameters: operation=$operation, direction=$direction, XMLSchemaVers…
5026 if (!$opData = $this->getOperationData($operation)) {
5027 $this->debug('Unable to retrieve WSDL data for operation: ' . $operation);
5028 $this->setError('Unable to retrieve WSDL data for operation: ' . $operation);
5095 function serializeParameters($operation, $direction, $parameters) argument
5097 …$this->debug("in serializeParameters: operation=$operation, direction=$direction, XMLSchemaVersion…
5105 if (!$opData = $this->getOperationData($operation)) {
5106 $this->debug('Unable to retrieve WSDL data for operation: ' . $operation);
5107 $this->setError('Unable to retrieve WSDL data for operation: ' . $operation);
6542 …function call($operation,$params=array(),$namespace='http://tempuri.org',$soapAction='',$headers=f… argument
6611 $this->setError( 'operation '.$operation.' not present.');
6612 $this->debug("operation '$operation' not present.");
6645 $payload = "<$operation xmlns=\"$namespace\">" . $payload . "</$operation>";
6647 $payload = "<$operation>" . $payload . "</$operation>";
6652 $payload = "<$nsPrefix:$operation xmlns:$nsPrefix=\"$namespace\">" .
6654 "</$nsPrefix:$operation>";
6656 $payload = "<$operation>" .
6658 "</$operation>";
6714 * @param string $operation operation name
6718 function getOperationData($operation){ argument
6719 if(isset($this->operations[$operation])){
6720 return $this->operations[$operation];
6722 $this->debug("No data for operation: $operation");
6837 $parser = new soap_parser($data,$this->xml_encoding,$this->operation,$this->decode_utf8);
7024 foreach ($this->operations as $operation => $opData) {
7025 if ($operation != '') {
7047 …return \$this->call('$operation', \$params, '".$opData['namespace']."', '".(isset($opData['soapAct…