• Web Services 应用开发学习笔记(五):创建WebService的简单例子


    如何创建一个小型的WebService呢?下面将会一步步介绍这一操作!

    1.创建一个空的WebSource网站,添加一个AddService.asmx文件。

    2.向AddService.asmx添加计算两数之和的方法。

    View Code
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.Services;
    
    /// <summary>
    ///AddService 返回两数之和服务
    /// </summary>
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    //若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消对下行的注释。 
    // [System.Web.Script.Services.ScriptService]
    public class AddService : System.Web.Services.WebService {
    
        public AddService () {
    
            //如果使用设计的组件,请取消注释以下行 
            //InitializeComponent(); 
        }
    
        [WebMethod]
        public string HelloWorld() {
            return "Hello World";
        }
    
        [WebMethod(Description = "返回两数之和")]
        public int AddResult(int a,int b)
        {
            return a + b;
        }
    }

    3.右击AddService.asmx查看浏览,显示新增加的方法。

    4.创建一个WebGet的网站,来调用WebSource网站的提供服务,右击添加服务引用。

    5.填上需要引用服务的地址,自动生成配置文件。

    7.建立一个default.aspx页面 ,拖入两个控件:txtA,txtB分别用来输入整数a,整数b,按钮btnGet。

    View Code
    <body>
        <form id="form1" runat="server">
        A数:<asp:TextBox ID="txtA" runat="server"></asp:TextBox><br />
        B数:<asp:TextBox ID="txtB" runat="server"></asp:TextBox>&nbsp;&nbsp;<asp:Button 
            ID="btnGet" runat="server" Text="调用" onclick="btnGet_Click" />
        </form>
    </body>
    View Code
        protected void btnGet_Click(object sender, EventArgs e)
        {
            ServiceReference1.AddServiceSoapClient service = new ServiceReference1.AddServiceSoapClient();
            int a = Convert.ToInt32(txtA.Text.Trim());
            int b= Convert.ToInt32(txtB.Text.Trim());
            int c=service.AddResult(a,b);
            Response.Write("<script type=\"text/javascript\">alert('"+c+"')</script>");
        }

    8.查看浏览,输入两个整数,点击按钮即可。

    总结:这是创建webservice最简单的小例子!是不是非常简单呢?仅供参考!!源码下载

    作者: ForEvErNoME
    出处: http://www.cnblogs.com/ForEvErNoME/
    欢迎转载或分享,但请务必声明文章出处。如果文章对您有帮助,希望你能 推荐关注
     
     
  • 相关阅读:
    C#将datatable生成easyui的绑定tree 的json数据格式
    asp.net DataTable转JSON
    asp.net面试题
    windows笔记线程的一些性质
    windows笔记创建线程的另一个函数_beginthreadex
    windows笔记【内核对象线程同步】等待定时器内核对象
    windows笔记用哪个创建线程CreateThread还是_beginthread
    windows笔记【内核对象线程同步】信标内核对象
    windows笔记【内核对象线程同步】事件内核对象
    windows笔记【内核对象线程同步】等待函数
  • 原文地址:https://www.cnblogs.com/ForEvErNoME/p/2667257.html
Copyright © 2020-2023  润新知