Webservice简单案例

东西不用,时间长了就会被忘掉。重新拾起来

做一个简单的Demo,便于以后的查询

服务器端--新建Calculator.asmx

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;

namespace WebServiceDemo
{
    /// <summary>
    /// Calculator 的摘要说明
    /// </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 Calculator : System.Web.Services.WebService
    {

        [WebMethod]
        public int Add(int a,int b)
        {
            return a + b;
        }
        [WebMethod]
        public int Sub(int a, int b)
        {
            return a - b;

        }
        [WebMethod]
        public int Mul(int a, int b)
        {
            return a * b;
        }

        [WebMethod]
        public int Div(int a, int b)
        {
            try
            {
                return a / b;
            }
            catch 
            {
                return 0;
            }
        }

    }
}

 

客户端调用

增加Web引用 http://localhost:21901/Calculator.asmx

            localhost.Calculator client = new localhost.Calculator();     //localhost为增加的web时起的名称
            client.Add(1, 2);

Webservice简单案例,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。