Skip to content
Snippets Groups Projects
Commit bfff3083 authored by Giovannoni Laurent's avatar Giovannoni Laurent
Browse files

FEAT php7 ready

parent 2ea9ce81
No related branches found
No related tags found
No related merge requests found
...@@ -124,10 +124,16 @@ class MaarchSoapServer extends webService { ...@@ -124,10 +124,16 @@ class MaarchSoapServer extends webService {
* generate SOAP server * generate SOAP server
*/ */
function makeSOAPServer() { function makeSOAPServer() {
global $HTTP_RAW_POST_DATA; //global $HTTP_RAW_POST_DATA;
$data = file_get_contents("php://input");
//var_export($HTTP_RAW_POST_DATA);
// echo "
// ------------------------------------------------
// ";
//var_export($data);
$this->importSOAPLibs(); $this->importSOAPLibs();
$server = $this->launchSOAPServer(); $server = $this->launchSOAPServer();
$server->service($HTTP_RAW_POST_DATA); $server->service($data);
} }
/** /**
......
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