|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-07-12 10:39 UTC] dmitry@php.net
[2007-07-16 11:48 UTC] ak at greatnet dot de
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 20:00:01 2025 UTC |
Description: ------------ calling a new client while executing a registered server function results a 'No such operation' message. Reproduce code: --------------- <? $server = new SoapServer(NULL,array('uri' => "soapserver.php5")); $server->addFunction('submitTEST'); $server->handle(); $method="somemethod"; $params=array("test1"=>"test1"); function submitTEST ($method,$params) { $client = new SoapClient('http://some.far.wsdl'); $submit = $client->__soapCall($method, $params); } ?> Expected result: ---------------- Expected to see the result of the existing function on the external soap server. Actual result: -------------- Uncaught SoapFault exception: [Server.userException] No such operation 'somemethod'