webservice.php
603 Bytes
<?php
$wsdl = "http://".$_SERVER['HTTP_HOST']."/webservice/service.php?class=contactManager&wsdl";
echo "<strong>WSDL file:</strong> ".$wsdl."<br>\n";
$options = Array('actor' =>'http://www.knowledgetree.pr',
'trace' => true);
$client = new SoapClient($wsdl,$options);
echo "<hr> <strong>Result from getContacts call:</strong><br>";
$res = $client->getContacts();
print_r($res);
echo "<hr><strong>Raw Soap response:</strong><br>";
echo htmlentities($client->__getLastResponse());
echo "<hr><strong>SoapFault asking for an unknown contact:</strong><br>";
$client->newContact();
?>