程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 一個.NET調用PHP Web Service的典型例子

一個.NET調用PHP Web Service的典型例子

編輯:關於PHP編程

最近一個項目由"WinForm直接訪問DB2"移植到"WinForm通過PHP Web Service來訪問DB2”。

這個命題的難點不是訪問DB2,而是.NET調用PHP Web Service。對於我這個長期作.NET,之前一直以為只有通過.NET調用PHP Web Service……的人來說,真是有點強“聰”所難了。

但是問題還是要解決的,期限就擺在眼前呢。經過一番調查,終於有了眉目,現在分享給大家。

首先要說明的,PHP服務器需要至少需要兩個文件——一個WSDL文件和一個PHP文件。WSDL文件是一種機讀的XML文件,用於描述WebService提供的服務和調用方法(對於.NET則可以自動生成調用代碼,十分好用),php文件就是真正實現的WEB服務了。

1)PHP服務器端代碼

1-1)TestWebService.php代碼

  1. TestWebService.php  
  2. <?php  
  3. class TestWebService  
  4. {  
  5.     public function HelloWorld()  
  6.     {  
  7.         return array("HelloWorldResult"=>"Hello");  
  8.     }  
  9.  
  10.     public function GetArray($args)  
  11.         {  
  12.           /*  
  13.            注意,Web Service的方法在聲明時至多一個參數,  
  14.             可是在調用該方法時就必須傳value1,value2兩個參數。  
  15.             (這一點十分令人費解,我的理解是,在調用該方法時,系統把所有參數都放到一個對象裡傳過來的)  
  16.           */ 
  17.  
  18.         $value1 = $args->value1;    
  19.         $value2 = $args->value2;//這兩句是獲取真正的參數  
  20.    
  21.         $arry = array($value1,$value2);  
  22.  
  23.         //返回值也很特別,不是直接返回$arry,而是把它放到一個對象裡再返回。  
  24.         return array("GetArrayResult"=>$arry);  
  25.     }  
  26. }  
  27. //創建WebSevice實例  
  28. $server = new SoapServer("TestWebService.wsdl");  
  29. //指定類名  
  30. $server->setClass("TestWebService");  
  31. $server->handle();  
  32. ?> 

1-2)TestWebService.wsdl代碼

  1. TestWebService.wsdl  
  2. <?xml version="1.0" encoding="utf-8"?> 
  3. <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/"> 
  4.   <wsdl:types> 
  5.     <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/"> 
  6.       <s:element name="HelloWorld"> 
  7.         <s:complexType /> 
  8.       </s:element> 
  9.       <s:element name="HelloWorldResponse"> 
  10.         <s:complexType> 
  11.           <s:sequence> 
  12.             <s:element minOccurs="0" maxOccurs="1" name="HelloWorldResult" type="s:string" /> 
  13.           </s:sequence> 
  14.         </s:complexType> 
  15.       </s:element> 
  16.       <s:element name="GetArray"> 
  17.         <s:complexType> 
  18.           <s:sequence> 
  19.             <s:element minOccurs="0" maxOccurs="1" name="value1" type="s:string" /> 
  20.             <s:element minOccurs="0" maxOccurs="1" name="value2" type="s:string" /> 
  21.           </s:sequence> 
  22.         </s:complexType> 
  23.       </s:element> 
  24.       <s:element name="GetArrayResponse"> 
  25.         <s:complexType> 
  26.           <s:sequence> 
  27.             <s:element minOccurs="0" maxOccurs="1" name="GetArrayResult" type="tns:ArrayOfString" /> 
  28.           </s:sequence> 
  29.         </s:complexType> 
  30.       </s:element> 
  31.       <s:complexType name="ArrayOfString"> 
  32.         <s:sequence> 
  33.           <s:element minOccurs="0" maxOccurs="unbounded" name="string" nillable="true" type="s:string" /> 
  34.         </s:sequence> 
  35.       </s:complexType> 
  36.     </s:schema> 
  37.   </wsdl:types> 
  38.   <wsdl:message name="HelloWorldSoapIn"> 
  39.     <wsdl:part name="parameters" element="tns:HelloWorld" /> 
  40.   </wsdl:message> 
  41.   <wsdl:message name="HelloWorldSoapOut"> 
  42.     <wsdl:part name="parameters" element="tns:HelloWorldResponse" /> 
  43.   </wsdl:message> 
  44.   <wsdl:message name="GetArraySoapIn"> 
  45.     <wsdl:part name="parameters" element="tns:GetArray" /> 
  46.   </wsdl:message> 
  47.   <wsdl:message name="GetArraySoapOut"> 
  48.     <wsdl:part name="parameters" element="tns:GetArrayResponse" /> 
  49.   </wsdl:message> 
  50.   <wsdl:portType name="TestWebServiceSoap"> 
  51.     <wsdl:operation name="HelloWorld"> 
  52.       <wsdl:input message="tns:HelloWorldSoapIn" /> 
  53.       <wsdl:output message="tns:HelloWorldSoapOut" /> 
  54.     </wsdl:operation> 
  55.     <wsdl:operation name="GetArray"> 
  56.       <wsdl:input message="tns:GetArraySoapIn" /> 
  57.       <wsdl:output message="tns:GetArraySoapOut" /> 
  58.     </wsdl:operation> 
  59.   </wsdl:portType> 
  60.   <wsdl:binding name="TestWebServiceSoap" type="tns:TestWebServiceSoap"> 
  61.     <soap:binding transport="http://schemas.xmlsoap.org/soap/http" /> 
  62.     <wsdl:operation name="HelloWorld"> 
  63.       <soap:operation soapAction="http://tempuri.org/HelloWorld" style="document" /> 
  64.       <wsdl:input> 
  65.         <soap:body use="literal" /> 
  66.       </wsdl:input> 
  67.       <wsdl:output> 
  68.         <soap:body use="literal" /> 
  69.       </wsdl:output> 
  70.     </wsdl:operation> 
  71.     <wsdl:operation name="GetArray"> 
  72.       <soap:operation soapAction="http://tempuri.org/GetArray" style="document" /> 
  73.       <wsdl:input> 
  74.         <soap:body use="literal" /> 
  75.       </wsdl:input> 
  76.       <wsdl:output> 
  77.         <soap:body use="literal" /> 
  78.       </wsdl:output> 
  79.     </wsdl:operation> 
  80.   </wsdl:binding> 
  81.   <wsdl:binding name="TestWebServiceSoap12" type="tns:TestWebServiceSoap"> 
  82.     <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" /> 
  83.     <wsdl:operation name="HelloWorld"> 
  84.       <soap12:operation soapAction="http://tempuri.org/HelloWorld" style="document" /> 
  85.       <wsdl:input> 
  86.         <soap12:body use="literal" /> 
  87.       </wsdl:input> 
  88.       <wsdl:output> 
  89.         <soap12:body use="literal" /> 
  90.       </wsdl:output> 
  91.     </wsdl:operation> 
  92.     <wsdl:operation name="GetArray"> 
  93.       <soap12:operation soapAction="http://tempuri.org/GetArray" style="document" /> 
  94.       <wsdl:input> 
  95.         <soap12:body use="literal" /> 
  96.       </wsdl:input> 
  97.       <wsdl:output> 
  98.         <soap12:body use="literal" /> 
  99.       </wsdl:output> 
  100.     </wsdl:operation> 
  101.   </wsdl:binding> 
  102.   <wsdl:service name="TestWebService"> 
  103.     <wsdl:port name="TestWebServiceSoap" binding="tns:TestWebServiceSoap"> 
  104.       <soap:address location="http://localhost/phpmyadmin/ws/TestWebService.php" /> 
  105.     </wsdl:port> 
  106.     <wsdl:port name="TestWebServiceSoap12" binding="tns:TestWebServiceSoap12"> 
  107.       <soap12:address location="http://localhost/phpmyadmin/ws/TestWebService.php" /> 
  108.     </wsdl:port> 
  109.   </wsdl:service> 
  110. </wsdl:definitions> 

WSDL的代碼比較長,當方法很多時,手敲代碼是不太可能的。有一個巧的辦法,就是也用.NET實現一個不含真正方法體的Web Serivce,然後通過http://***/TestWebService.asmx?wsdl的方法生成wsdl代碼文件。

關於WSDL文件,我要說明特別說明兩點:

(1)soap:address結點是聲明WebService的地址,在部署時要改成相應地址;

(2)一維數組的聲明類型為ArrayOfType,字符串數組為ArrayOfString。如果Type不是簡單類型,則Type需要另外聲明。

2).NET客戶端代碼

先要添加Web引用,地址為WSDL文件的Http地址。

.NET調用PHP Web Service調用代碼(C#)

  1. //初始化WebService  
  2.         localhost.TestWebService srv = new localhost.TestWebService();  
  3.         //調第一個方法  
  4.          string str = srv.HelloWorld();  
  5.         //調第二個方法  
  6.          string[] arrysrv.GetArray("string1","string2"); 

.NET調用PHP Web Service總結:

(一)PHP是一種弱類型語言,檢查錯誤比較困難。array類型也與一般理解的數組不同,它也有類似Hashtable的用法。

(二)PHP Web Service方法的傳入參數、返回值都至多有一個,因為真正調用時的參數和返回值,都是包裝到一個對象中傳送的。

(三)PHP Web Service也支持自定義類型和自定義類型數組等復雜類型,但不支持多組數組。

(四)若返回值需要是多張二維表時,我淺薄的以為,可以傳化一組字符串數組傳送,格式為

[表1行數],[表1列數],[表1列名1],[表1列名2],……[表1列名N],[表1中按行列存放的值]

[表2行數],[表2列數],[表2列名1],[表2列名2],……[表2列名N],[表2中按行列存放的值]……

[表M行數],[表M列數],[表M列名1],[表M列名2],……[表M列名N],[表2中按行列存放的值]

按順序將上面[]中的內容串成字符串數組,效率還不錯,我測試10000行240列的數據,我有現成編解代碼,有興趣的可以向我索取.


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved