最近需要用php创建webservice供c#和java来调用,通过3天的搜索和尝试,终于成功在c#下调用,java的调用还没开始,为防止忘记,在这里记录下来全过程。
本文参考了许多文章,文中也采用了其中的示例。
本文目录如下
一、php创建webservice
二、生成.wsdl文件
三、c#调用php的webservice
一、php创建webservice
1、php环境
我用的是windows的apache,php.ini文件中 extension=php_soap.dll 去掉注释即可,前提是已经安装了 php_soap.dll。
环境测试,在cmd窗口中输入如下命令来检测soap是否正常
c:\>php --ini;用来查看ini文件中的soap模块是否正常,它和phpinfo()看到的未必一致
c:\>php -i |findstr soap;用来看soap模块是否正常
c:\>php -r new soapclient('http://localhost/wsdl/person.wsdl');;用来直接运行soap
2、php服务端文件(testwebservice.php)
php class testwebservice { publicfunction helloworld() { returnarray(helloworldresult=>welcome to dongzi world); } publicfunction getarray($args) { /* 注意,web service的方法在声明时至多一个参数, 可是在调用该方法时就必须传value1,value2两个参数。 (这一点十分令人费解,我的理解是,在调用该方法时,系统把所有参数都放到一个对象里传过来的) */$value1 = $args->value1; $value2 = $args->value2;//这两句是获取真正的参数 $arry = array($value1,$value2); //返回值也很特别,不是直接返回$arry,而是把它放到一个对象里再返回。 returnarray(getarrayresult=>$arry); } } //创建websevice实例 $server = new soapserver(testwebservice.wsdl); //指定类名 $server->setclass(testwebservice); $server->handle(); ?>
view code二、生成.wsdl文件
本来我想简单一点,用soapdiscovery.class.php来生成,可是总是出现各种奇葩问题;迫不得已安装了zend studio12.5,可是还是出现另外的奇葩问题;最终我找到一个可行的方案,是用vs2010来生成,c#调用没有问题。
1、打开vs2010,新建项目-asp.net空web应用程序;
2、解决方案资源管理器-项目(右键)-添加-新建项-web服务,名称修改为testwebservice.asmx,代码如下:
using system;using system.collections.generic;using system.linq;using system.web;using system.web.services;namespace webapplication1{ ////// testwebservice 的摘要说明 /// [webservice(namespace = http://tempuri.org/)] [webservicebinding(conformsto = wsiprofiles.basicprofile1_1)] [system.componentmodel.toolboxitem(false)] // 若要允许使用 asp.net ajax 从脚本中调用此 web 服务,请取消对下行的注释。 // [system.web.script.services.scriptservice]publicclass testwebservice : system.web.services.webservice { [webmethod] publicstring helloworld() { return; } [webmethod] publicstring[] getarray(string a,string b) { returnnull; } }}
view codehelloworld()和getarray()是我们希望暴露的方法,我写成空方法了。
3、f5运行,在弹出的ie浏览器中复制运行的url地址
http://localhost:63463/testwebservice.asmx
打开一个新的ie浏览器窗口,粘贴并修改为,然后回车,此时窗口会展示wsdl文件的xml格式内容:
http://localhost:63463/testwebservice.asmx?wsdl
4、点击ie浏览器的文件-另存为菜单,保存为testwebservice.wsdl文件,放到和testwebservice.php同目录下。
代码如下:
xml version=1.0 encoding=utf-8?>wsdl:definitions xmlns:soap=http://schemas.xmlsoap.org/wsdl/soap/ xmlns:tm=http://microsoft.com/wsdl/mime/textmatching/ xmlns:soapenc=http://schemas.xmlsoap.org/soap/encoding/ xmlns:mime=http://schemas.xmlsoap.org/wsdl/mime/ xmlns:tns=http://tempuri.org/ xmlns:s=http://www.w3.org/2001/xmlschema xmlns:soap12=http://schemas.xmlsoap.org/wsdl/soap12/ xmlns:http=http://schemas.xmlsoap.org/wsdl/http/ targetnamespace=http://tempuri.org/ xmlns:wsdl=http://schemas.xmlsoap.org/wsdl/>wsdl:types>s:schema elementformdefault=qualified targetnamespace=http://tempuri.org/>s:element name=helloworld>s:complextype />s:element>s:element name=helloworldresponse>s:complextype>s:sequence>s:element minoccurs=0 maxoccurs=1 name=helloworldresult type=s:string/>s:sequence>s:complextype>s:element>s:element name=getarray>s:complextype>s:sequence>s:element minoccurs=0 maxoccurs=1 name=a type=s:string/>s:element minoccurs=0 maxoccurs=1 name=b type=s:string/>s:sequence>s:complextype>s:element>s:element name=getarrayresponse>s:complextype>s:sequence>s:element minoccurs=0 maxoccurs=1 name=getarrayresult type=tns:arrayofstring/>s:sequence>s:complextype>s:element>s:complextype name=arrayofstring>s:sequence>s:element minoccurs=0 maxoccurs=unbounded name=string nillable=true type=s:string/>s:sequence>s:complextype>s:schema>wsdl:types>wsdl:message name=helloworldsoapin>wsdl:part name=parameters element=tns:helloworld/>wsdl:message>wsdl:message name=helloworldsoapout>wsdl:part name=parameters element=tns:helloworldresponse/>wsdl:message>wsdl:message name=getarraysoapin>wsdl:part name=parameters element=tns:getarray/>wsdl:message>wsdl:message name=getarraysoapout>wsdl:part name=parameters element=tns:getarrayresponse/>wsdl:message>wsdl:porttype name=testwebservicesoap>wsdl:operation name=helloworld>wsdl:input message=tns:helloworldsoapin/>wsdl:output message=tns:helloworldsoapout/>wsdl:operation>wsdl:operation name=getarray>wsdl:input message=tns:getarraysoapin/>wsdl:output message=tns:getarraysoapout/>wsdl:operation>wsdl:porttype>wsdl:binding name=testwebservicesoap type=tns:testwebservicesoap>soap:binding transport=http://schemas.xmlsoap.org/soap/http/>wsdl:operation name=helloworld>soap:operation soapaction=http://tempuri.org/helloworld style=document/>wsdl:input>soap:body use=literal/>wsdl:input>wsdl:output>soap:body use=literal/>wsdl:output>wsdl:operation>wsdl:operation name=getarray>soap:operation soapaction=http://tempuri.org/getarray style=document/>wsdl:input>soap:body use=literal/>wsdl:input>wsdl:output>soap:body use=literal/>wsdl:output>wsdl:operation>wsdl:binding>wsdl:binding name=testwebservicesoap12 type=tns:testwebservicesoap>soap12:binding transport=http://schemas.xmlsoap.org/soap/http/>wsdl:operation name=helloworld>soap12:operation soapaction=http://tempuri.org/helloworld style=document/>wsdl:input>soap12:body use=literal/>wsdl:input>wsdl:output>soap12:body use=literal/>wsdl:output>wsdl:operation>wsdl:operation name=getarray>soap12:operation soapaction=http://tempuri.org/getarray style=document/>wsdl:input>soap12:body use=literal/>wsdl:input>wsdl:output>soap12:body use=literal/>wsdl:output>wsdl:operation>wsdl:binding>wsdl:service name=testwebservice>wsdl:port name=testwebservicesoap binding=tns:testwebservicesoap>soap:address location=http://localhost:63463/testwebservice.asmx/>wsdl:port>wsdl:service>wsdl:definitions>
view code把 http://localhost:63463/testwebservice.asmx 修改为你最终要访问的网址,我的是:
http://192.168.1.5/wsdl/006/testwebservice.php
三、c#调用php的webservice
1、新建网站-asp.net网站;
2、解决方案资源管理器-项目(右键)-添加web引用,在url中输入:
http://192.168.1.5/wsdl/006/testwebservice.php?wsdl
会显示出如下窗口:
点击[添加引用]
3、修改default.aspx.cs代码为:
using system;using system.collections.generic;using system.linq;using system.web;using system.web.ui;using system.web.ui.webcontrols;publicpartialclass _default : system.web.ui.page{ protectedvoid page_load(object sender, eventargs e) { //初始化webservice webreference.testwebservice srv = new webreference.testwebservice(); //调第一个方法 string str = srv.helloworld(); //调第二个方法 string[] arry = srv.getarray(string1, string2); response.write(str); }}
view code4、ctrl+f5运行,看到最上面出现“welcome to dongzi world”,表示成功调用!
以上就介绍了一个php创建webservice,并通过c#调用的真实实例,包括了方面的内容,希望对php教程有兴趣的朋友有所帮助。