Fixed issue #16
This commit is contained in:
parent
8f79b3392a
commit
65fc380fa2
|
@ -82,7 +82,10 @@ class WsdlDumper implements DumperInterface
|
||||||
$this->qualify($this->getRequestMessageName($method)),
|
$this->qualify($this->getRequestMessageName($method)),
|
||||||
$this->qualify($this->getResponseMessageName($method))
|
$this->qualify($this->getResponseMessageName($method))
|
||||||
);
|
);
|
||||||
$portOperation->setAttribute('parameterOrder', implode(' ', array_keys($requestParts)));
|
|
||||||
|
if (!empty($requestParts)) {
|
||||||
|
$portOperation->setAttribute('parameterOrder', implode(' ', array_keys($requestParts)));
|
||||||
|
}
|
||||||
|
|
||||||
$baseBinding = array(
|
$baseBinding = array(
|
||||||
'use' => 'literal',
|
'use' => 'literal',
|
||||||
|
|
Loading…
Reference in New Issue