|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-06-02 06:42 UTC] kalle@php.net
[2008-06-02 12:08 UTC] albert at insad dot nl
[2008-08-12 23:24 UTC] neumann at ntech dot com dot br
[2009-04-28 18:38 UTC] jani@php.net
[2009-05-06 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 01 23:00:02 2025 UTC |
Description: ------------ If I execute HelloClient.php with the HelloServer.php at windows vista, don't work(error 500). If I Copy the same HelloServer.php to another server, and execute the same HelloClient.php at Windows Vista, it work well... PS:. Remember to change the param location in HelloClient.php, point it to the HelloServer.php location URL. Reproduce code: --------------- <?php #HelloClient.php $client = new SoapClient(null, array( 'location' => "http://localhost/soap/HelloServer.php", 'uri' => "http://localhost/", 'trace' => 1 )); $return = $client->__soapCall("hello",array("world")); echo $return; ?> ************* <?php #HelloServer.php function hello($someone) { return new SoapParam("Hello " . $someone . "!","myparam"); } $server = new SoapServer(null, array('uri' => "http://localhost/")); $server->addFunction("hello"); $server->handle(); ?> Expected result: ---------------- display the text: Hello world! Actual result: -------------- http server error 500