summaryrefslogtreecommitdiff
path: root/framework/3rdParty/WsdlGen/WsdlOperation.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/3rdParty/WsdlGen/WsdlOperation.php')
-rw-r--r--framework/3rdParty/WsdlGen/WsdlOperation.php38
1 files changed, 19 insertions, 19 deletions
diff --git a/framework/3rdParty/WsdlGen/WsdlOperation.php b/framework/3rdParty/WsdlGen/WsdlOperation.php
index 58690a23..75e21308 100644
--- a/framework/3rdParty/WsdlGen/WsdlOperation.php
+++ b/framework/3rdParty/WsdlGen/WsdlOperation.php
@@ -29,38 +29,38 @@ class WsdlOperation
* The name of the operation
*/
private $operationName;
-
+
/**
* Documentation for the operation
*/
private $documentation;
-
+
/**
* The input wsdl message
*/
private $inputMessage;
-
+
/**
* The output wsdl message
*/
private $outputMessage;
-
+
public function __construct($name, $doc='')
{
$this->operationName = $name;
$this->documentation = $doc;
}
-
+
public function setInputMessage(WsdlMessage $msg)
{
$this->inputMessage = $msg;
}
-
+
public function setOutputMessage(WsdlMessage $msg)
{
$this->outputMessage = $msg;
}
-
+
/**
* Sets the message elements for this operation into the wsdl document
* @param DOMElement $wsdl The parent domelement for the messages
@@ -68,14 +68,14 @@ class WsdlOperation
*/
public function setMessageElements(DOMElement $wsdl, DOMDocument $dom)
{
-
+
$input = $this->inputMessage->getMessageElement($dom);
$output = $this->outputMessage->getMessageElement($dom);
-
+
$wsdl->appendChild($input);
$wsdl->appendChild($output);
}
-
+
/**
* Get the port operations for this operation
* @param DomDocument $dom The dom document to create the messages as children of
@@ -85,20 +85,20 @@ class WsdlOperation
{
$operation = $dom->createElementNS('http://schemas.xmlsoap.org/wsdl/', 'wsdl:operation');
$operation->setAttribute('name', $this->operationName);
-
+
$documentation = $dom->createElementNS('http://schemas.xmlsoap.org/wsdl/', 'wsdl:documentation', htmlentities($this->documentation));
$input = $dom->createElementNS('http://schemas.xmlsoap.org/wsdl/', 'wsdl:input');
$input->setAttribute('message', 'tns:'.$this->inputMessage->getName());
$output = $dom->createElementNS('http://schemas.xmlsoap.org/wsdl/', 'wsdl:output');
$output->setAttribute('message', 'tns:'.$this->outputMessage->getName());
-
+
$operation->appendChild($documentation);
$operation->appendChild($input);
$operation->appendChild($output);
-
+
return $operation;
}
-
+
/**
* Build the binding operations.
* TODO: Still quite incomplete with all the things being stuck in, I don't understand
@@ -111,26 +111,26 @@ class WsdlOperation
{
$operation = $dom->createElementNS('http://schemas.xmlsoap.org/wsdl/', 'wsdl:operation');
$operation->setAttribute('name', $this->operationName);
-
+
$soapOperation = $dom->createElementNS('http://schemas.xmlsoap.org/wsdl/soap/', 'soap:operation');
$method = $this->operationName;
$soapOperation->setAttribute('soapAction', $namespace.'#'.$method);
$soapOperation->setAttribute('style', $style);
-
+
$input = $dom->createElementNS('http://schemas.xmlsoap.org/wsdl/', 'wsdl:input');
$output = $dom->createElementNS('http://schemas.xmlsoap.org/wsdl/', 'wsdl:output');
-
+
$soapBody = $dom->createElementNS('http://schemas.xmlsoap.org/wsdl/soap/', 'soap:body');
$soapBody->setAttribute('use', 'encoded');
$soapBody->setAttribute('namespace', $namespace);
$soapBody->setAttribute('encodingStyle', 'http://schemas.xmlsoap.org/soap/encoding/');
$input->appendChild($soapBody);
$output->appendChild(clone $soapBody);
-
+
$operation->appendChild($soapOperation);
$operation->appendChild($input);
$operation->appendChild($output);
-
+
return $operation;
}
}