AW: AW: [SOAP] WSDL error can someone help
[email protected] ("Christian Wenz")
| Newsgroups | php.soap |
|---|---|
| Message-ID | <001701c85c24$7eb68cd0$7c23a670$@de> |
Hi,
> Fatal error: Uncaught SoapFault exception: [Client] Function ("call")
> is not
> a valid method for this service in
> /var/www/distribsys/newtest/client.php:6
> Stack trace: #0 [internal function]: SoapClient->__call('call', Array)
Since you are using WSDL mode anyway, why don't you try something like this
(after settting $c):
$proxy = $c->getProxy();
$stockprice = $proxy->getStockQuote('ABC');
Best regards
Christian