我製作了ASP.NET Web服務,其中包含一個名爲HelloWorld的初始方法。我想用PHP和下面的代碼來訪問提到的方法:從PHP調用asp.net web服務
$client = new SoapClient("http://localhost:4925/Service1.asmx?WSDL");
$result = $client->HelloWorld()->TestMethodResult;
echo $result;
當我運行PHP腳本,我得到以下錯誤:
***Notice: Undefined property: stdClass::$TestMethodResult in C:\wamp\www\probe\servis.php on line 8***
是否有人可以幫忙嗎?
TestMethodResult正確嗎? – asawyer
是的,發送代碼TestMethodResult – user1477388
我用下面的帖子作爲明星指南,但停止與給定的問題:http://stackoverflow.com/questions/9711502/call-asp-net-web-service-from-php-with - 多個參數 – MrD