在WindowsForm程序中添加服务引用和Web引用对比为了验证书上有关Visual Studio 2010添加服务引用和Web引用的区别,进行实验。
一、建立一个Web服务程序项目
新建项目,选择ASP.NET空Web应用程序,在其中添加Web服务,然后发布到IIS,路径为http://localhost/hello/hello.asmx,服务主要通过HelloWorld()方法输出字符串“Hello World”,内容如下:using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services; namespace Hello
{
/// <summary>
/// Hello 的摘要说明
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消对下行的注释。
// [System.Web.Script.Services.ScriptService]
public class Hello : System.Web.Services.WebService
{ [WebMethod]
public string HelloWorld()
{
return "Hello World";
}
}
}二、建立测试程序
窗体应用程序,在项目中选择添加服务引用,选择高级,添加Web引用来使用,引用后可以看到在Service References文件夹下出现的ServiceReferrence1中有:configuration.svcinfo,configuration91.svcinfo,hello.disco,hello.wsdl,Reference.cs,Reference.svcmap,共六个文件,或者直接添加服务引用。要使用的泪和方法在下图:
在Web项目和Web网站解决方案引用时可以选择添加Web引用还是服务引用。
1.添加Web引用,选择命名空间为localhost,在App_WebReferences文件夹下出现引用信息,localhost文件夹下有如下文件:Hello.disco,Hello.discomap,Hello.wsdl。
2.添加服务引用,命名空间为local1,local1文件夹中有以下文件:configuration.svcinfo,configuration91.svcinfo,hello.disco,Hello.wsdl,Reference.svcmap。
效果如下
相关文章
- 03-22IDEA中向JSP页面添加css和js引用路径的问题
- 03-22VSTO 添加引用和第三方类库
- 03-22Winform中在使用VS+svn进行协同开发时添加引用时的相对路径和绝对路径的问题
- 03-22Silverlight在添加WCF服务引用时报错
- 03-22添加web引用和添加服务引用有什么区别?
- 03-22添加web引用和添加服务引用有什么区别?
- 03-22Xamarin.Forms项目无法添加服务引用
- 03-22WCF 在VS中,添加服务引用,地址输入http://ip/Service.svc,点击前往,提示错误,内容如下:
- 03-22MySQL8.0数据库出现的问题——外码创建方式、外键约束两个引用列不兼容问题、check约束问题、用触发器代替check约束、关键字DELIMITER、删除添加索引、删除添加外键约束、和一些数据库方面的操作
- 03-22.NET(C#)使用HttpWebRequest、JavaScript(JS)和添加引用的三种方式调用WebService