We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e136d65 commit 241111aCopy full SHA for 241111a
src/Codeception/Module/SOAP.php
@@ -36,6 +36,7 @@
36
* ## Configuration
37
*
38
* * endpoint *required* - soap wsdl endpoint
39
+ * * SOAPAction - replace SOAPAction HTTP header (Set to '' to SOAP 1.2)
40
41
* ## Public Properties
42
@@ -479,7 +480,7 @@ protected function processRequest($action, $body)
479
480
[
481
'HTTP_Content-Type' => 'text/xml; charset=UTF-8',
482
'HTTP_Content-Length' => strlen($body),
- 'HTTP_SOAPAction' => $action
483
+ 'HTTP_SOAPAction' => isset($this->config['SOAPAction']) ? $this->config['SOAPAction'] : $action
484
],
485
$body
486
);
0 commit comments