XML 解析错误:找不到元素位置:http://localhost/Test/TestService.asmx 第 1 行,第 1 列:

发布于 2024-10-17 23:22:57 字数 103 浏览 2 评论 0原文

我在 VS 2008 中创建了一个 Web 服务并将其托管在 IIS 中,但是当尝试在 brwoser 中操作它时,它会抛出此错误。

任何帮助将不胜感激。

谢谢

I created a Web service in VS 2008 and hosted it in IIS but when trying to oprn it in brwoser it throws this error.

Any help will be appreciated.

Thanx

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

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

发布评论

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

评论(1

冷︶言冷语的世界 2024-10-24 23:22:57
  1. 不要在浏览器中打开它。编写单元测试来调用该服务。服务在浏览器中的行为方式可能与现实生活中的行为方式不同。
  2. 使用Fiddler来观察网络流量。你会看到有趣的事情。
  3. 我敢打赌,您遇到 XML 解析错误的原因是 XML 不是从服务器返回的内容。我敢打赌,您已经收到了文本或 HTML 信息,告诉您 Web 服务中出现了错误。
  1. Don't open it in a browser. Write a unit test to call the service. How the service behaves in the browser may not be how it behaves in real life.
  2. Use Fiddler to watch the network traffic. You'll see interesting things.
  3. I bet the reason you've got an XML parsing error is that XML isn't what's being returned from the server. I bet you've got text or HTML telling you there's been an error in your web service.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文