WSDL file: ".$wsdl."
\n"; $options = Array('actor' =>'http://schema.jool.nl', 'trace' => true); $client = new SoapClient($wsdl,$options); echo "
Result from getContacts call:
"; $res = $client->getContacts(); print_r($res); echo "
Raw Soap response:
"; echo htmlentities($client->__getLastResponse()); echo "
SoapFault asking for an unknown contact:
"; $client->getContact(1); ?>