PHP调用.NET的WebService 简单实例,.netwebservice_PHP教程

WBOY
Release: 2016-07-13 10:00:09
Original
716 people have browsed it

PHP调用.NET的WebService 简单实例,.netwebservice

创建一个C#的web service,这个就不多说了,我用vs2008的wizard创建了一个最简单的,让它运行在:http://localhost/webservice1/service1.asmx

其中有个web method像这样的:

复制代码 代码如下:
[WebMethod]
public string HelloWorld()
{
    return "Hello World";
}

ok,一切就绪。在某php文件中如下写法: php5本身就支持SOAP调用Web Service:

<&#63;php
  //get localization strings from C# webservice
  $client = new SoapClient('http://localhost/webservice1/Localization.asmx&#63;wsdl');

  echo "Call web service method from C# WebService:\n";
  $result = $client->GetLocalizationResource();

  if(!is_soap_fault($result))
  {  
    echo "return:\n", $result->GetLocalizationResourceResult;
  }
  else
  {
    echo "soap call fault";
  }
&#63;>

Copy after login

这样就OK了,会继续介绍SOAP

以上所述就是本文的全部内容了,希望大家能够喜欢。

请您花一点时间将文章分享给您的朋友或者留下评论。我们将会由衷感谢您的支持!

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/974661.htmlTechArticlePHP调用.NET的WebService 简单实例,.netwebservice 创建一个C#的web service,这个就不多说了,我用vs2008的wizard创建了一个最简单的,让它运行在:...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!