如何从PHP调用.NET Web服务

时间:2014-03-15 12:20:49

标签: c# php .net web-services

.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();
?> 

我搜索了很多并应用了所有内容,但我的代码不起作用,它只显示一个白页。

0 个答案:

没有答案