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

evo : class for uri

parent ecc5f9ab
No related branches found
No related tags found
No related merge requests found
...@@ -29,6 +29,8 @@ ...@@ -29,6 +29,8 @@
* @ingroup core * @ingroup core
*/ */
require_once('Maarch_SOAP_DISCO_Server.php');
//declaration of descriptions services vars //declaration of descriptions services vars
if(!isset ($SOAP_dispatch_map)) { if(!isset ($SOAP_dispatch_map)) {
$SOAP_dispatch_map = Array (); $SOAP_dispatch_map = Array ();
...@@ -84,7 +86,9 @@ class MySoapServer extends webService { ...@@ -84,7 +86,9 @@ class MySoapServer extends webService {
*/ */
function importSOAPLibs() { function importSOAPLibs() {
require ('SOAP/Server.php'); require ('SOAP/Server.php');
/*
require ('SOAP/Disco.php'); require ('SOAP/Disco.php');
*/
} }
/** /**
...@@ -104,7 +108,7 @@ class MySoapServer extends webService { ...@@ -104,7 +108,7 @@ class MySoapServer extends webService {
function makeWSDL() { function makeWSDL() {
$this->importSOAPLibs(); $this->importSOAPLibs();
$server = $this->launchSOAPServer(); $server = $this->launchSOAPServer();
$disco = new SOAP_DISCO_Server($server, 'MySoapServer'); $disco = new Maarch_SOAP_DISCO_Server($server, 'MySoapServer');
header("Content-type: text/xml"); header("Content-type: text/xml");
echo $disco->getWSDL(); echo $disco->getWSDL();
} }
...@@ -125,7 +129,7 @@ class MySoapServer extends webService { ...@@ -125,7 +129,7 @@ class MySoapServer extends webService {
function makeDISCO() { function makeDISCO() {
$this->importSOAPLibs(); $this->importSOAPLibs();
$server = $this->launchSOAPServer(); $server = $this->launchSOAPServer();
$disco = new SOAP_DISCO_Server($server, 'MySoapServer'); $disco = new Maarch_SOAP_DISCO_Server($server, 'MySoapServer');
header("Content-type: text/xml"); header("Content-type: text/xml");
echo $disco->getDISCO(); echo $disco->getDISCO();
} }
......
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