VS2008中Web Reference和Service Reference的区别

本文对比分析了Visual Studio 2008中AddWebReference与AddServiceReference两种引用Web服务的方法,详细介绍了两者生成代理的不同方式、适用的.NET Framework版本以及在web.config文件中的配置差异。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

很早就发现在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的支持)。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值