webservice简单例子

Posted 随学·笔记

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webservice简单例子相关的知识,希望对你有一定的参考价值。

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简单例子的主要内容,如果未能解决你的问题,请参考以下文章

极致精简的webservice例子

使用CXF做简单的WebService例子

最简单的webservice如何写

转:Web Service入门开发简单例子--很详尽

C# Remoting的一个简单例子

使用CXF做webservice整合现有项目的例子