|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-11-20 15:23 UTC] laruence@php.net
-Status: Open
+Status: Feedback
[2015-11-20 15:23 UTC] laruence@php.net
[2015-11-29 04:22 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 18:00:02 2025 UTC |
Description: ------------ We have a problem with executing any commands from web services. The SoapClient thorws Fatal error: Uncaught SoapFault exception: [Client] Function ("QuickLogin") is not a valid method for this service in /home/daniel/test.php:18 $client->__getFunctions() is listing the function and the same code is running fine under PHP 5.6.15 Test script: --------------- $client = new SoapClient("https://mblue.atollon.com/main.wsdl", array('trace' => 1, 'location' => "https://mblue.atollon.com/soap")); $requestParams = array( 'server' => "SERVERNAME", 'password' => "PASS", 'userName' => "USERNAME" ); $response = $client->QuickLogin($requestParams);