I am trying to consume a webservice, but nothing is being returned? Any ideas?
<?php
require_once 'NuSOAP/nusoap-0.6.1/nusoap.php';
$soapclient = new soapclient('http://www.astro-matchmaker.com/aspnet_sample/simple_test.asmx');
$senddata = array('strFirstName' => 'Big', 'strLastName' => 'Bruce');
$dothisresult = $soapclient->call('test',$senddata,"urn:ns.www.astromatchmaker.com");
Print_r($dothisresult);
?>