首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web Service >

使用webservice的有关问题

2012-09-06 
使用webservice的问题[codeHTML][/code]C# code[System.Web.Services.WebServiceBindingAttribute(Name

使用webservice的问题
[code=HTML][/code]

C# code
[System.Web.Services.WebServiceBindingAttribute(Name = "HelloWorld", Namespace = "http://tempuri.org/")]public partial class Soap : System.Web.Services.Protocols.SoapHttpClientProtocol{    public Soap()    {        this.Url = "http://localhost/webservice.asmx";    }    public DateTime GetDate()    {        object[] results = this.Invoke("HelloWorld", new object[] { });        return ((DateTime)(results[1]));    }}

我用这个获取数据的时候出错
HTML code
异常详细信息: System.ArgumentException: HelloWorld Web 服务方法名无效。源错误: 行 65:     public DateTime GetDate()行 66:     {行 67:         object[] results = this.Invoke("HelloWorld", new object[] { });行 68:         return ((DateTime)(results[1]));行 69:     } 


是什么问题
HelloWorld是有的啊
在webservice.asmx中测试没有问题
请教了

[解决办法]
HelloWorld应该是个方法

热点排行