• 关于webservice不支持方法重载的解决办法


    今天在写WebService时,出现了这样的错误:

    Count(Int32, Int32) 和 Count(Int32) 同时使用消息名称“Count”。使用 WebMethod 自定义特性的 MessageName 属性为方法指定唯一的消息名称。

    原来,必须在方法中指定messagename来用户唯一标识且在类中指示不支持1.1标准,

    由于用到方法重载,没想到在web服务中会出现错误。

    原来WebService中是不支持方法的重载的。

    为什么WebService中不支持方法的重载?

    WebService中不支持方法的重载,这还得从WebService的工作机制中说起,当客户端调用一个WebService的方法时,首先要将方法名称和需要传递的参数包装成XML,也就是SOAP包,通过HTTP协议传递到服务器端,然后服务器端解析这段XML,得到被调用的方法名称和传递过来的参数,进而调用WebService相应的方法,方法执行完毕后,将返回结果再次包装为XML,也就是SOAP响应,发送到客户端,最后客户端解析这段XML,最终得到返回结果,关键在于服务器端解析XML时无法识别重载的方法,WebService只认方法的名称,而且两个方法的名称相同,服务器端不知道该调用哪个相应的方法。

    具体解说,可参看http://www.cnblogs.com/menglin2010/archive/2012/03/29/2421445.html

    解决方法如下:

    [WebService(Namespace = "http://www.efreer.cn/")]
    //[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [WebServiceBinding(ConformsTo = WsiProfiles.None)]
    public class email : System.Web.Services.WebService
    {

       [WebMethod(EnableSession=true)]
            public int Count(int i)
            {
                i = i + 1;
                return i;
            }

            [WebMethod(EnableSession = true,MessageName="Count1",Description="数量")]
            public int Count(int i,int j)
            {
                return i + j;
            }

    }

    后来在博客园中http://www.cnblogs.com/VisualStudio/archive/2008/10/11/1308541.html又看到了另一个解决方法,此方法是在遵守BP1.1的规范下,实现重载的。

     /// <summary>
        /// Service1 的摘要说明
        /// </summary>
        [WebService(Namespace = "http://tempuri.org/", Description = "测试", Name = "Service1")]
        [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1, Name = "OverLoadCount", EmitConformanceClaims=true)]
        [ToolboxItem(false)]
        // 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消对下行的注释。
        // [System.Web.Script.Services.ScriptService]
        public class Service1 : System.Web.Services.WebService
        {

            [WebMethod]
           
            public string HelloWorld()
            {
                return "Hello World";
            }
            [WebMethod]
            [SoapDocumentMethod(OneWay = true)]
            public void OneWay(int i)
            {
                i = i + 1;
             
            }

            public static int i;
            [WebMethod(EnableSession = true, TransactionOption = TransactionOption.RequiresNew)]
           
            public int Count()
            {
                i = i + 1;
               return i;
            }


            [WebMethod(EnableSession = true,MessageName="Count1",Description="数量")] 
            [SoapDocumentMethod( Binding="OverLoadCount")]
            public int Count(int i,int j)
            {
                return i + j;
            }
        }

    这样也可以实现重载。

    打开服务后,可看到

    支持下列操作。有关正式定义,请查看服务说明

  • 相关阅读:
    太白老师 day06 编码 encode decode
    太白老师day6 1.代码块 2.is==id 3.小数据池
    MySQL 基本语法(1.表字段操作,2表记录管理 3.运算符管理4.SQL查询 5.约束6.索引
    List 接口常用子类及其特点
    Java 集合框架
    Java 常用工具类之基本对象包装类
    Java 常用工具类之 String 类
    Java 多线程间通信
    Java 多线程通信之多生产者/多消费者
    Java 之多线程通信(等待/唤醒)
  • 原文地址:https://www.cnblogs.com/love828/p/3266258.html
Copyright © 2020-2023  润新知