Web 服务仅接受 HelloWorld 作为方法名称
我创建了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在函数顶部写入
[WebMethod]
,例如write
[WebMethod]
on the top of the function like