如何在 ASP.Net 中发布 Web 服务?
以下网址是我托管的 Web 服务:http://monocept.net/vlt/html/AutoComplete。 asmx
当我调用此服务时,它会调用 Web 方法 GetCompleteList()。此方法实现在 AutoComplete.asmx.cs 文件中定义。当我调用此服务时,它会抛出 HTTP 404 异常,而在我的本地计算机中,服务工作正常并且能够调用 GetCompleteList() Web 方法。
Below url is web service which I hosted: http://monocept.net/vlt/html/AutoComplete.asmx
when I am invoking this service it calls web method GetCompleteList(). This method implementation is defined in AutoComplete.asmx.cs file. When I invoking this service it throws exception as HTTP 404, where as in my local machine service is working fine and able to hit GetCompleteList() Web method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
错误页面实际上是在 HTML 注释中转储异常/堆栈跟踪:
我不熟悉 MVC,所以我真的无法给你一个可靠的答案,但是研究该异常会发现一些 结果。
The error page is actually dumping out the exception/stack trace in a HTML comment:
I'm not familiar with MVC, so I really can't give you a solid answer, but researching that exception turns up a few results.
您尚未为此路径定义控制器。这是 MVC 错误。您的服务没有业务逻辑。
You haven't defined a controller for this path. It is MVC error. Your service doesn't has a business logic.
您是否确保排除了 global.asax 文件中的路由?
Have you ensured that you are excluding the route in your global.asax file?