.NET Web服务代码
[WebMethod]
public string asd(){
return "asd";
}
PHP代码:
<?php
require 'lib/nusoap.php';
$client = new SoapClient("http://localhost/nos/WebSite/Service.asmx?WSDL");
$error = $client->getError();
if ($error) {
die("client construction error: {$error}\n");
}
$answer = $client->call('asd');
print $answer;
$error = $client->getError();
?>
我搜索了很多并应用了所有内容,但我的代码不起作用,它只显示一个白页。