Web 服务仅接受 HelloWorld 作为方法名称

发布于 2024-11-08 19:15:09 字数 688 浏览 0 评论 0原文

我创建了一个 Web 服务,一旦测试默认的 HelloWorld 方法在我的 ajax 方法中被正确调用,我将其删除,添加另一个方法并重新运行所述步骤 此处

现在,我收到此错误。

错误:500 - System.InvalidOperationException:LoadAllFeeds Web 服务方法名称无效。 在 System.Web.Services.Protocols.HttpServerProtocol.Initialize() 在 System.Web.Services.Protocols.ServerProtocol.SetContext(类型类型,HttpContext 上下文,HttpRequest 请求,HttpResponse 响应) 在 System.Web.Services.Protocols.ServerProtocolFactory.Create(类型类型、HttpContext 上下文、HttpRequest 请求、HttpResponse 响应、Boolean& abortProcessing) - 内部服务器错误

但是当我将方法名称带回 HelloWorld(并再次运行 msdn 文档中的步骤)时,一切正常。

我一无所知,希望有人能帮助我。谢谢!

I created a web service and once I tested that the default HelloWorld method is being called properly in my ajax method, I removed it, added another method and rerun the steps as stated here.

Now, I receive this error.

error: 500 - System.InvalidOperationException: LoadAllFeeds Web Service method name is not valid.
at System.Web.Services.Protocols.HttpServerProtocol.Initialize()
at System.Web.Services.Protocols.ServerProtocol.SetContext(Type type, HttpContext context, HttpRequest request, HttpResponse response)
at System.Web.Services.Protocols.ServerProtocolFactory.Create(Type type, HttpContext context, HttpRequest request, HttpResponse response, Boolean& abortProcessing)
- Internal Server Error

But when I bring back the method name to HelloWorld (and again run the steps in the msdn doc) it goes ok.

I am clueless, I hope someone could help me. Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

此生挚爱伱 2024-11-15 19:15:09

在函数顶部写入 [WebMethod] ,例如

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

     [WebMethod]
    public List<Employee> GetAllEmployees()
    {
        return list;
    }

write [WebMethod] on the top of the function like

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

     [WebMethod]
    public List<Employee> GetAllEmployees()
    {
        return list;
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文