Webservice endpoint for system
The WDSL file for the document webservice is available here: /service/soap/domuspro.webservice/v4/system.wsdl
The methods are briefly described here
ping
Test service which will always return TRUE if the system is running.
version
Return the current version of the webservice.
Examples
ini_set("soap.wsdl_cache_enabled", 0);
$wsdl = 'http://ws.domuspro.dk/service/soap/domuspro.webservice/v4/system.wsdl';
$client = new SoapClient($wsdl);
try {
$res = $client->version();
print 'System is running version ' . $res . ' of the webservice' . PHP_EOL;
} catch (SoapFault $e) {
print 'Error: ' . $e->getMessage();
}