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

fix: xml returned structure

parent 33eda404
No related branches found
No related tags found
No related merge requests found
......@@ -108,30 +108,24 @@ class MyRestServer extends webService
*/
function makeRESTServer()
{
/*echo '<pre>';
//only for tests
/* echo '<pre>';
var_dump($_SERVER);
var_dump($this->dispatchMap);
echo '</pre>';*/
//echo 'method ? ' . $this->crudMethod . '<br>';
echo 'requested resource : ' . $this->requestedResource . '<br>';
echo 'requested resource id : ' . $this->requestedResourceId . '<br>';
echo 'result of the function call : ' . $this->call();
//echo 'requested resource : ' . $this->requestedResource . '<br>';
//echo 'requested resource id : ' . $this->requestedResourceId . '<br>';
//echo 'result of the function call : ' . $this->call();
header("Content-type: text/xml");
$this->call();
}
/**
* generate REST server
* generate CMIS catalog
*/
function makeCMISCatalog()
{
/*echo '<pre>';
var_dump($_SERVER);
var_dump($this->dispatchMap);
echo '</pre>';*/
//echo 'method ? ' . $this->crudMethod . '<br>';
/*echo 'requested resource : ' . $this->requestedResource . '<br>';
echo 'requested resource id : ' . $this->requestedResourceId . '<br>';
echo 'result of the function call : ' . $this->call();*/
//$cmis = new Maarch_SOAP_DISCO_Server($server, 'MySoapServer');
header("Content-type: text/xml");
readfile('core/class/web_service/cmisCatalog.xml');
}
......
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