码迷,mamicode.com
首页 > Web开发 > 详细

webservice简单例子

时间:2017-08-03 15:39:14      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:png   sys   tool   services   action   img   技术分享   image   file   

1、添加web服务。

技术分享

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

        [WebMethod]
        public string HelloWorld()
        {
            return "Hello World";
        }

        [WebMethod]
        public int GetSum(int a, int b)
        {
            return a + b;
        }
    }

2、添加服务引用:地址为上一步添加的web服务访问地址,高级=》添加web引用=》添加引用。

技术分享

技术分享

技术分享

3、调用

public ActionResult GetSum(int a, int b)
        {
            localhost.demo s = new localhost.demo();
            var sum = s.GetSum(a, b);
            return Content(sum.ToString());
        }

 

webservice简单例子

标签:png   sys   tool   services   action   img   技术分享   image   file   

原文地址:http://www.cnblogs.com/flywing/p/7279903.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!