开发者

How to fix error returned by __soapCall?

开发者 https://www.devze.com 2023-02-20 11:49 出处:网络
$param[\'websiteConfigID\'] = 729872; $param[\'numberOfRecords\'] = 10; $param[\'numberOfRecords\'] = 10;

$param['websiteConfigID'] = 729872;
$param['numberOfRecords'] = 10;
$param['numberOfRecords'] = 10;
$client = new SoapClient(WSDL);

$result = $client->__soapCall('GetTicketsStringInputs', array('parameters' => $param));

$result开发者_运维问答 holding this error message....

Fatal error: Uncaught SoapFault exception: 
[Client] Function ("GetTicketsStringInputs") is not a valid method for this service in /home/fmticket/public_html/inc/genericLib.php:279 
Stack trace: 
#0 /home/fmticket/public_html/inc/genericLib.php(279): SoapClient->__soapCall('GetTicketsStrin...', Array) 
#1 /home/fmticket/public_html/resultsTicket.php(12): getTickets(Array) 
#2 {main} thrown in /home/fmticket/public_html/inc/genericLib.php on line 279

how to resolve it?? plz help.


Your code is calling the remote GetTicketsStringInputs function :

$client->__soapCall('GetTicketsStringInputs', ...


The Fatal error you get indicates :

Function ("GetTicketsStringInputs") is not a valid method for this service


It seems pretty clear : the method you're trying to call doesn't exist, it is not provided by the remote web-service.

So, to fix that Fatal Error, you have to stop calling that function ;-)

You should check the WSDL of your webservice : does it really export such a method ?

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号