我是网络服务的新手。我已按照this tutorial创建了一项网络服务。服务器运行正常,但是当我在浏览器中运行客户端时,它什么也没显示。
server.php 与教程中的相同。
client.php
<?php
require_once('lib/nusoap.php');
//This is your webservice server WSDL URL address
$wsdl = "http://localhost/web%20service/client.php?wsdl";
//create client object
$client = new nusoap_client($wsdl, 'wsdl');
$err = $client->getError();
if ($err) {
// Display the error
echo '
Constructor error
' . $err;
// At this point, you know the call that follows will fail
exit();
}
//calling our first simple entry point
$result1=$client->call('hello', array('username'=>'achmad'));
print_r($result1);
//call second function which return complex type
$result2 = $client->call('login', array('username'=>'john',
'password'=>'doe') );
//$result2 would be an array/struct
print_r($result2);
?>
我正在使用wamp服务器。
答案 0 :(得分:0)
自己解决了。我刚刚从项目文件夹名称中删除了一个空格,现在它正常工作。