现在的位置: 首页 > 综合 > 正文

VS2008中Web Reference和Service Reference的区别

2012年06月03日 ⁄ 综合 ⁄ 共 3823字 ⁄ 字号 评论关闭

很早就发现在vs2008中应用web service有两种方式,即Add Web Reference和Add Service Reference,但是一直不是很清楚这两者有什么区别。趁着今天有空实验一下这两者的区别并记录下来供大家参考。

 

首先在网上查找,发现有如下两个主要区别:

1.Add Web Reference是由wsdl.exe生成客户端代理的。

   Add Service Reference是由svcutil.exe生成客户端代理的。

2.Add Web Reference生成的代理可以被.net1.1或.net2.0的客户端调用

   Add Service Reference生成的代理只能被.net3.0+的客户端调用,而且Add Service Reference后不仅生成代理类,在web.config中还会生成相应的Tag。

 

下面是我的实验:

首先建立一个solution,在其中增加三个工程(一个WebApplication,一个Webservice,一个Wcfservice)。

solution

1.测试Web Reference

(1.1)在WebApplication中引用WebService(即WebServiceForTest)

     引用后可正常使用,web.config中多出如下配置(url上的端口号和个人机器相关)

<applicationSettings>
<WebReferAndSvcRefer.Properties.Settings>
<setting name="WebReferAndSvcRefer_AsmxWebRefer_Service1"
serializeAs="String">

<value>http://localhost:1253/Service1.asmx"</value>
</setting>
</WebReferAndSvcRefer.Properties.Settings>
</applicationSettings

 

(1.2) 在WebApplication中引用WcfService(即WcfServiceForTest)

       引用后无法正常使用,web.config中多出的配置和上面类似

<applicationSettings>
<WebReferAndSvcRefer.Properties.Settings>
<setting name="WebReferAndSvcRefer_WcfWebRefer_Service1"
serializeAs="String">
<value>http://localhost:1254/Service1.svc</value>
</setting>
</WebReferAndSvcRefer.Properties.Settings>
</applicationSettings>

 

2.测试Service Reference

(2.1)在WebApplication中引用WebService(即WebServiceForTest)

   引用后可正常使用,web.config中多出如下配置(url上的端口号和个人机器相关)

<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="Service1Soap" closeTimeout="00:01:00"
openTimeout="00:01:00"
receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false"
bypassProxyOnLocal="false"
hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288"
maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8"
transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192"
maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None" realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:1253/Service1.asmx" binding="basicHttpBinding"
bindingConfiguration="Service1Soap"
contract="AsmxSvcRefer.Service1Soap" name="Service1Soap" />
</client>

</system.serviceModel>

 

(2.2)在WebApplication中引用WcfService(即WcfServiceForTest)

    引用后可正常使用,web.config中多出如下配置(url上的端口号和个人机器相关)

<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_IService1"
closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00"
sendTimeout="00:01:00"
bypassProxyOnLocal="false" transactionFlow="false"
hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288"
maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8"
useDefaultWebProxy="true"
allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="8192"
maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="Message">
<transport clientCredentialType="Windows"
proxyCredentialType="None" realm="" />
<message clientCredentialType="Windows"
negotiateServiceCredential="true"
algorithmSuite="Default" establishSecurityContext="true" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:1254/Service1.svc"
binding="wsHttpBinding"
bindingConfiguration="WSHttpBinding_IService1"
contract="WcfSvcRefer.IService1"
name="WSHttpBinding_IService1">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
</client>

</system.serviceModel>

 

3.测试客户端的.net framework要求

将WebApplication(即WebReferAndSvcRefer)的Target Framework降为2.0

image

然后发现在WebReferAndSvcRefer中无法引用Service Reference,证明了Add Service Reference生成的代理只能被.net3.0+的客户端调用。

 

4.总结

以上的实验过程基本证明了本文开头提到的两个区别,其中(1.2)Add Web Reference的方式不能使用Wcf也证明了Add Web Reference生成的代理是面向.net1.1或.net2.0的客户端的(wcf需要.net3.0的支持)。

抱歉!评论已关闭.