Skip to content
Snippets Groups Projects
Verified Commit 9aa7adf9 authored by Damien's avatar Damien
Browse files

External SB controller curlSOAP

parent 2c6f5144
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ class IxbusController
'soapAction' => 'http://www.srci.fr/CreateSession'
]);
$response = $data->children('http://schemas.xmlsoap.org/soap/envelope/')->Body->children()->CreateSessionResponse;
$response = $data['response']->children('http://schemas.xmlsoap.org/soap/envelope/')->Body->children()->CreateSessionResponse;
return $response;
}
......
......@@ -66,7 +66,7 @@ class CurlModel
public static function execSOAP(array $aArgs)
{
ValidatorModel::notEmpty($aArgs, ['xmlPostString', 'url', 'soapAction']);
ValidatorModel::notEmpty($aArgs, ['xmlPostString', 'url']);
ValidatorModel::stringType($aArgs, ['xmlPostString', 'url', 'soapAction']);
ValidatorModel::arrayType($aArgs, ['options']);
......@@ -81,19 +81,23 @@ class CurlModel
'Cache-Control: no-cache',
'Pragma: no-cache',
'Content-length: ' . strlen($aArgs['xmlPostString']),
"SOAPAction: \"{$aArgs['soapAction']}\""
]
];
if (!empty($aArgs['soapAction'])) {
$opts[CURLOPT_HTTPHEADER][] = "SOAPAction: \"{$aArgs['soapAction']}\"";
}
if (!empty($aArgs['options'])) {
$opts = array_merge($opts, $aArgs['options']);
foreach ($aArgs['options'] as $key => $option) {
$opts[$key] = $option;
}
}
$curl = curl_init();
curl_setopt_array($curl, $opts);
$rawResponse = curl_exec($curl);
return simplexml_load_string($rawResponse);
return ['response' => simplexml_load_string($rawResponse), 'infos' => curl_getinfo($curl)];
}
public static function getConfigByCallId(array $aArgs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment