2009-11-13 12:07:42 UTC
I know the thread's old but, here's my .20
after declaring:
$client = new SoapClient(...[snipped]...)
try{
echo "<pre>\n";
You should instead, use:
$client = new nusoap_client('WSDL_URL_GOES_HERE', "true");
try{
echo "<pre>\n";
oh and before you call a method, you should also be aware that you have to call the proxy, like this:
$proxy = $client->getProxy();
$yourResult = $proxy->RegisteredWSMethodGoesHere("Some_Argument_If_Needed");
Hope this helps somene...
Carlos