php soap issue

I am using this soap call function to get values from wsdl .I got response ,but not any data from the server. here is my code please help

<?php $client = new SoapClient("http://www.alphamax3.com/AM3WebApp/services/PropertySearchServiceSoap?wsdl", array('trace' => 1)); $result = $client->searchInstrument( array('instrumentSearchRequest' =>array('searchInstrument'=>array('number'=>1)) )); echo "RESPONSE:\n" . htmlentities($client->__getLastResponse()) . "\n"; ?>

I don’t find any documentation with the service provider(www.alphamax3.com) . Anybody please help

Thanks

Sponsor our Newsletter | Privacy Policy | Terms of Service