http://blog.robinzhong.com/index.php/archives/2006/08/23/116.html

WebService Interface? 什么东西? 为什么要这个玩意儿,它有什么用?

有这样一种情况: 我有一个Client程序,要引用到多个Web Service,这一些Web Service的调用方式是一样的,只是各自Web Service本身的实现有一些区别.那么,对于Client来说,最好的调用方式就是这样的:

使用Web Service Interface.IObj obj = new WebService1();
使用Web Service Interface.obj.Invoke();
使用Web Service Interface.
使用Web Service Interface.obj 
= new WebService2();
使用Web Service Interface.obj.Invoke();
使用Web Service Interface.

即通常说到的基于Interface的编程...

但是Web Service的实现和普通的Interface又有一些不同.下面是一个例子,记录了如何使用Web Service Interface.

1. 创建一个接口 ICalculate ,加上WebServiceBinding这个Attribute,指明这个Web Service的Name和Namespace:

使用Web Service Interface.    [WebServiceBinding(ConformsTo=WsiProfiles.BasicProfile1_1,Name="ICalculate",Namespace="http://dev.robinzhong.com/ICalculate/")]
使用Web Service Interface.    
public interface ICalculate
    }

2. 创建一个实现了上述接口的类 XCalculate ,代码如下:

使用Web Service Interface.    [WebService(Namespace = "http://tempuri.org/XCalculate/")]
使用Web Service Interface.    [WebServiceBinding(ConformsTo 
= WsiProfiles.BasicProfile1_1,Name="ICalculate",Namespace="http://dev.robinzhong.com/ICalculate/")]
使用Web Service Interface.    [ToolboxItem(
false)]
使用Web Service Interface.    
public class XCalculate : System.Web.Services.WebService,ICalculate
    }


这个地方,不用实现的代码.写这两个东西的目的,是为了得到WSDL的定义,注:仅仅只是此SOAP消息的定义,和具体的Service无关.
访问此Web Service地址,得到其WSLD文件 ( http://localhost:2839/XCalculate.asmx?wsdl ).删除 <wsdl :service />节点.
得到下面的WSDL文件:

使用Web Service Interface.< ?xml version="1.0" encoding="utf-8"?>
使用Web Service Interface.
<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://dev.robinzhong.com/ICalculate/" 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://dev.robinzhong.com/ICalculate/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
使用Web Service Interface.  
</wsdl><wsdl :types>
使用Web Service Interface.    
<:schema elementFormDefault="qualified" targetNamespace="http://dev.robinzhong.com/ICalculate/">
使用Web Service Interface.      
</s><:element name="Add">
使用Web Service Interface.        
</s><:complexType>
使用Web Service Interface.          
</s><:sequence>
使用Web Service Interface.            
<:element minOccurs="1" maxOccurs="1" name="a" type="s:int" />
使用Web Service Interface.            
<:element minOccurs="1" maxOccurs="1" name="b" type="s:int" />
使用Web Service Interface.          
</s>
使用Web Service Interface.        
使用Web Service Interface.      
使用Web Service Interface.      
<:element name="AddResponse">
使用Web Service Interface.        
</s><:complexType>
使用Web Service Interface.          
</s><:sequence>
使用Web Service Interface.            
<:element minOccurs="1" maxOccurs="1" name="AddResult" type="s:int" />
使用Web Service Interface.          
</s>
使用Web Service Interface.        
使用Web Service Interface.      
使用Web Service Interface.      
<:element name="Sub">
使用Web Service Interface.        
</s><:complexType>
使用Web Service Interface.          
</s><:sequence>
使用Web Service Interface.            
<:element minOccurs="1" maxOccurs="1" name="a" type="s:int" />
使用Web Service Interface.            
<:element minOccurs="1" maxOccurs="1" name="b" type="s:int" />
使用Web Service Interface.          
</s>
使用Web Service Interface.        
使用Web Service Interface.      
使用Web Service Interface.      
<:element name="SubResponse">
使用Web Service Interface.        
</s><:complexType>
使用Web Service Interface.          
</s><:sequence>
使用Web Service Interface.            
<:element minOccurs="1" maxOccurs="1" name="SubResult" type="s:int" />
使用Web Service Interface.          
</s>
使用Web Service Interface.        
使用Web Service Interface.      
使用Web Service Interface.    
使用Web Service Interface.  
</wsdl>
使用Web Service Interface.  
<wsdl :message name="AddSoapIn">
使用Web Service Interface.    
<wsdl :part name="parameters" element="tns:Add" />
使用Web Service Interface.  
</wsdl>
使用Web Service Interface.  
<wsdl :message name="AddSoapOut">
使用Web Service Interface.    
<wsdl :part name="parameters" element="tns:AddResponse" />
使用Web Service Interface.  
</wsdl>
使用Web Service Interface.  
<wsdl :message name="SubSoapIn">
使用Web Service Interface.    
<wsdl :part name="parameters" element="tns:Sub" />
使用Web Service Interface.  
</wsdl>
使用Web Service Interface.  
<wsdl :message name="SubSoapOut">
使用Web Service Interface.    
<wsdl :part name="parameters" element="tns:SubResponse" />
使用Web Service Interface.  
</wsdl>
使用Web Service Interface.  
<wsdl :portType name="ICalculate">
使用Web Service Interface.    
</wsdl><wsdl :operation name="Add">
使用Web Service Interface.      
<wsdl :input message="tns:AddSoapIn" />
使用Web Service Interface.      
<wsdl :output message="tns:AddSoapOut" />
使用Web Service Interface.    
</wsdl>
使用Web Service Interface.    
<wsdl :operation name="Sub">
使用Web Service Interface.      
<wsdl :input message="tns:SubSoapIn" />
使用Web Service Interface.      
<wsdl :output message="tns:SubSoapOut" />
使用Web Service Interface.    
</wsdl>
使用Web Service Interface.  
使用Web Service Interface.  
<wsdl :binding name="ICalculate" type="tns:ICalculate">
使用Web Service Interface.    
<soap :binding transport="http://schemas.xmlsoap.org/soap/http" />
使用Web Service Interface.    
</wsdl><wsdl :operation name="Add">
使用Web Service Interface.      
<soap :operation soapAction="http://dev.robinzhong.com/ICalculate/Add" style="document" />
使用Web Service Interface.      
</wsdl><wsdl :input>
使用Web Service Interface.        
<soap :body use="literal" />
使用Web Service Interface.      
</wsdl>
使用Web Service Interface.      
<wsdl :output>
使用Web Service Interface.        
<soap :body use="literal" />
使用Web Service Interface.      
</wsdl>
使用Web Service Interface.    
使用Web Service Interface.    
<wsdl :operation name="Sub">
使用Web Service Interface.      
<soap :operation soapAction="http://dev.robinzhong.com/ICalculate/Sub" style="document" />
使用Web Service Interface.      
</wsdl><wsdl :input>
使用Web Service Interface.        
<soap :body use="literal" />
使用Web Service Interface.      
</wsdl>
使用Web Service Interface.      
<wsdl :output>
使用Web Service Interface.        
<soap :body use="literal" />
使用Web Service Interface.      
</wsdl>
使用Web Service Interface.    
使用Web Service Interface.  
使用Web Service Interface.  
<wsdl :binding name="ICalculate1" type="tns:ICalculate">
使用Web Service Interface.    
<soap12 :binding transport="http://schemas.xmlsoap.org/soap/http" />
使用Web Service Interface.    
</wsdl><wsdl :operation name="Add">
使用Web Service Interface.      
<soap12 :operation soapAction="http://dev.robinzhong.com/ICalculate/Add" style="document" />
使用Web Service Interface.      
</wsdl><wsdl :input>
使用Web Service Interface.        
<soap12 :body use="literal" />
使用Web Service Interface.      
</wsdl>
使用Web Service Interface.      
<wsdl :output>
使用Web Service Interface.        
<soap12 :body use="literal" />
使用Web Service Interface.      
</wsdl>
使用Web Service Interface.    
使用Web Service Interface.    
<wsdl :operation name="Sub">
使用Web Service Interface.      
<soap12 :operation soapAction="http://dev.robinzhong.com/ICalculate/Sub" style="document" />
使用Web Service Interface.      
</wsdl><wsdl :input>
使用Web Service Interface.        
<soap12 :body use="literal" />
使用Web Service Interface.      
</wsdl>
使用Web Service Interface.      
<wsdl :output>
使用Web Service Interface.        
<soap12 :body use="literal" />
使用Web Service Interface.      
</wsdl>


得到了Soap消息的定义和结构,我们就可以用wsdl.exe来生成代码,开始实际的编程工作了.

3. 调用 wsdl.exe /l:cs /n:xxx /out:xxx.cs /si icalculate.wsdl ,注意这个/si,完整的参数是 /serverInterface.
生成的代码如下:

使用Web Service Interface.    [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl""2.0.50727.42")]
使用Web Service Interface.    [System.Web.Services.WebServiceBindingAttribute(Name
="ICalculate", Namespace="http://dev.robinzhong.com/ICalculate/")]
    }

注意: 生成的是一个Interface,不是具体的类.这个Interface,就是我所谓的Web Service Interface (其实实质就是WSDL定义).这个Interface的定义和前面定义的ICalculate,除了多一些Attribute外,其它的一模一样.这些个Attribute就是最大的区别,用来定义WebService调用时接收/发送的Soap消息.

4. 即然Interface都出来了.那么这个时候可以写真正的Web Service了,以下是两个Web Service的示例代码:

使用Web Service Interface.    [WebService(Namespace = "http://tempuri.org/")]
使用Web Service Interface.    [WebServiceBinding(ConformsTo 
= WsiProfiles.BasicProfile1_1,Namespace="http://dev.robinzhong.com/ICalculate/",Name="ICalculate",Location="http://localhost/WSInterface/ICalculate.wsdl")]
使用Web Service Interface.    [ToolboxItem(
false)]
使用Web Service Interface.    
public class NewCalculate : System.Web.Services.WebService ,IICalculate
    }

 

使用Web Service Interface.    [WebService(Namespace = "http://tempuri.org/")]
使用Web Service Interface.    [WebServiceBinding(ConformsTo 
= WsiProfiles.BasicProfile1_1,Name="ICalculate",Namespace="http://dev.robinzhong.com/ICalculate/",Location="http://localhost/WSInterface/ICalculate.wsdl")]
使用Web Service Interface.    [ToolboxItem(
false)]
使用Web Service Interface.    
public class SimpleCalculate : System.Web.Services.WebService, IICalculate
    }

注意WebServiceBinding这个Attribute,在这两个Web Service类中,都使用了这个Attribute,而且设置其Name="ICalculate", Namespace="http://dev.robinzhong.com/ICalculate"... <font color=red>(注:由于IICalculate接口已定义了WebServiceBindingAttribute,所以在其继承的类中也不必定义此Attribute,ASP.NET 2.0测试通过.)</font>

5. Web Service已写好,下面就是Client的调用代码.同样的,也得先生成IICalculate这个接口,同样的方法.
  wsdl.exe /l:cs /n:xxx /out:xxx.cs /si icalculate.wsdl

得到IICalcuate接口.
然后再添加上面两个Web Service中任意一个WebService的引用.比如NewCalculate这个Web Service,得到如下代码:

使用Web Service Interface.[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services""2.0.50727.42")]
使用Web Service Interface.    [System.Diagnostics.DebuggerStepThroughAttribute()]
使用Web Service Interface.    [System.ComponentModel.DesignerCategoryAttribute(
"code")]
使用Web Service Interface.    [System.Web.Services.WebServiceBindingAttribute(Name
="ICalculate", Namespace="http://dev.robinzhong.com/ICalculate/")]

修改此类,让其从IICalculate继承.然后修改构造函数,让其通过构造函数得到Web Service的Url.如下:

使用Web Service Interface.[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services""2.0.50727.42")]
使用Web Service Interface.    [System.Diagnostics.DebuggerStepThroughAttribute()]
使用Web Service Interface.    [System.ComponentModel.DesignerCategoryAttribute(
"code")]
使用Web Service Interface.    [System.Web.Services.WebServiceBindingAttribute(Name
="ICalculate", Namespace="http://dev.robinzhong.com/ICalculate/")]
        }


6. 好了,可以开始测试我们的代码了:

使用Web Service Interface.IICalculate calculate;
使用Web Service Interface.
使用Web Service Interface.calculate 
= new CalculateProxy( "http://localhost:2935/SimpleCalculate.asmx");
使用Web Service Interface.Console.WriteLine( 
"calculate.Add( 10, 345 ) = " + calculate.Add( 10345 ) );
使用Web Service Interface.Console.WriteLine( 
"calculate.Sub( 3455, 234 ) = " + calculate.Sub( 3455234 ) );
使用Web Service Interface.
使用Web Service Interface.calculate 
= new CalculateProxy( "http://localhost:2935/NewCalculate.asmx");
使用Web Service Interface.Console.WriteLine( 
"calculate.Add( 10, 345 ) = " + calculate.Add( 10345 ) );
使用Web Service Interface.Console.WriteLine( 
"calculate.Sub( 3455, 234 ) = " + calculate.Sub( 3455234 ) );

这样就达到了Web Service Interface的目的了--我不管是那里的Web Service,反正只要实现了上面的接口,给我正确的url地址,我就可以调用...

其实,我们可以用更幽雅的方式实现: Contract First . Web Service不是RPC,它只传输数据,你只要定义发送方和接收方的消息格式就够了.
推荐大家看看 :
http://www.thinktecture.com/Resources/Software/WSContractFirst/default.html
http://msdn.microsoft.com/msdnmag/issues/05/05/ServiceStation/

SOA ? 使用Web Service Interface.

相关文章: