动态调用webservice时 ServiceDescriptionImporter类在vs2010无法引用的解决方法 (转)
Posted xihong2014
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了动态调用webservice时 ServiceDescriptionImporter类在vs2010无法引用的解决方法 (转)相关的知识,希望对你有一定的参考价值。
本文转自:http://blog.csdn.net/limlimlim/article/details/8647038
[导读]ServiceDescriptionImporter是创建Web Service 时使用的类,它是引用继承System.Web.Services
当我将VS2005里写的一段代码放在VS2010里时,发现引用出现错误标志.代码如下:
‘// 3. 创建客户端代理代理类。
ServiceDescriptionImporter importer = new ServiceDescriptionImporter(); //VC
Dim importer As ServiceDescriptionImporter = New ServiceDescriptionImporter() //VB
检查原因,我已经添加了System.Web.Service,问题仍未解决,
检查.net 引用 是使用 .net 4.0 framework client profile 将它改成 .net 4.0 framework,问题终于解决.
原来在创建VS2010项目时,系统默认是 .net 4.0 framework client profile,我们应该将它改成 .net 4.0 framework,设置方法:
鼠标右击项目---->选择属性(Properties)---->应用程序----->修改目标框架(Target framework)
这里指的是winform程序
以上是关于动态调用webservice时 ServiceDescriptionImporter类在vs2010无法引用的解决方法 (转)的主要内容,如果未能解决你的问题,请参考以下文章
动态调用webservice时 ServiceDescriptionImporter类在vs2010无法引用的解决方法 (转)