Skip to content
Snippets Groups Projects
Verified Commit e90756c3 authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX #14175 TIME 0:30 Improve I-parapheur connector

parent 9100845c
No related branches found
No related tags found
No related merge requests found
...@@ -283,7 +283,14 @@ class IParapheurController ...@@ -283,7 +283,14 @@ class IParapheurController
return ['error' => $curlReturn['error']]; return ['error' => $curlReturn['error']];
} }
$response = $curlReturn['response']->children('http://schemas.xmlsoap.org/soap/envelope/')->Body->children('http://www.adullact.org/spring-ws/iparapheur/1.0')->GetHistoDossierResponse[0]; try {
if (is_bool($curlReturn['response']) === true) {
return ['error' => 'Curl response is a boolean'];
}
$response = $curlReturn['response']->children('http://schemas.xmlsoap.org/soap/envelope/')->Body->children('http://www.adullact.org/spring-ws/iparapheur/1.0')->GetHistoDossierResponse[0];
} catch (Exception $e) {
return ['error' => 'Exception : ' . $e->getMessage()];
}
if ($response->MessageRetour->codeRetour == $aArgs['config']['data']['errorCode']) { if ($response->MessageRetour->codeRetour == $aArgs['config']['data']['errorCode']) {
return ['error' => 'Error : [' . $response->MessageRetour->severite . ']' . $response->MessageRetour->message]; return ['error' => 'Error : [' . $response->MessageRetour->severite . ']' . $response->MessageRetour->message];
......
...@@ -152,7 +152,7 @@ class CurlModel ...@@ -152,7 +152,7 @@ class CurlModel
} }
$rawResponse = substr($rawResponse, $infos['header_size']); $rawResponse = substr($rawResponse, $infos['header_size']);
} elseif (!empty($aArgs['delete_header'])) { // Delete header for iparapheur } elseif (!empty($aArgs['delete_header'])) { // Delete header for iparapheur
$body = explode(PHP_EOL . PHP_EOL, $rawResponse)[1]; // put the header ahead $body = strstr($rawResponse, '<?xml'); // put the header ahead
if (empty($body)) { if (empty($body)) {
$body = explode(PHP_EOL, $rawResponse); $body = explode(PHP_EOL, $rawResponse);
// we remove the 4 starting item of the array (header) // we remove the 4 starting item of the array (header)
......
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