客户端发现响应内容类型为“text/html”,但预期为“text/xml”

发布于 2024-07-12 01:22:47 字数 249 浏览 5 评论 0原文

我收到此错误:

客户端发现响应内容类型为“text/html”,但预期为“text/xml”。

我正在添加实时搜索的网络参考。 当我构建项目时它成功了。 但之后一旦我在文本框中输入一些文本& 输入搜索按钮会出现此错误。 我正在使用我的本地机器& 将 .net 2.0 与 C# 结合使用。
请帮助我...
提前致谢...

I am getting this error:

Client found response content type of 'text/html', but expected 'text/xml.

I am adding web reference for live search. When i build the project its Successful. But after that once i enter some text in textbox & enter search button it gives this error. I am Using my local machine & Using .net 2.0 with C#.
Plz help me...
Thanks In Advance...

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

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

发布评论

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

评论(4

凉风有信 2024-07-19 01:22:47

正如马特所说,返回的可能是一个错误页面。

使用代理(如 Fiddler)或网络嗅探器(如 WireShark 查看原始响应是什么 - 这应该可以帮助您了解到底发生了什么。

As Matt said, it's probably an error page coming back.

Either use a proxy like Fiddler or a network sniffer like WireShark to see what the raw response is - that should help you get to the bottom of what's going on.

手心的海 2024-07-19 01:22:47

通常,该错误意味着服务已发回 (HTML) 错误消息,而不是客户端期望的 XML SOAP 响应。

对于您控制的 Web 服务,很容易找到问题,因为您可以在浏览器中手动调用 Web 方法。 当它是别人的服务时,诊断它有点棘手。 您也许能够跟踪 Web 参考的代码并在引发异常之前检查响应的文本。

Generally that error means that the service has sent back an (HTML) error message rather than the XML SOAP response that your client was expecting.

For web services that you control it's really easy to find the problem, because you can invoke the webmethods by hand in your browser. To diagnose it when it's someone else's service is a little trickier. You might be able to trace into the code for your web reference and inspect the text of the response before the exception is thrown.

小伙你站住 2024-07-19 01:22:47

我发现 Fiddler 在调试 http 客户端服务器问题时非常有用。
它是一个代理,允许您拦截甚至更改请求和响应的内容。

I have found Fiddler to be highly useful in debugging http client server issues.
It is a proxy that allows you to intercept and even change the content of the request and response.

不寐倦长更 2024-07-19 01:22:47

在您的实际代码中,将行:替换

searchRequest.AppID = "APP ID you generated from ...";

为实际的 AppID,它应该是一个长字母数字序列

In your actual code, replace the line:

searchRequest.AppID = "APP ID you generated from ...";

with the actual AppID, which should be a long alpha-numeric sequence.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文