Web 服务响应采用 HTML 格式而不是 XML 选项
我正在使用 Android 开发的 Web 服务。
我使用 Apache 的 HTTPClient 和 HTTPResponse 调用 Web 服务。
令人惊讶的是,Web 服务返回的响应是 HTML XML 的。如果有任何方法可以指定 Web服务期望的响应内容是XML。
是否有任何参数要在客户端或响应实例上发送,以指定响应应采用 XML 格式。
我正在使用 Earthtools.com 提供的时区网络服务,如果我们提供纬度和经度信息,我们可以通过该服务获取时区信息
问候,
Prayag
I am working with a Web Service with Android Development.
I called the web service using Apache's HTTPClient and HTTPResponse.
Surprisingly, the response returned by the webservice is HTML instead
of XML. Kindly guide me if there is any way to specify that the
content of the response of web service expected is XML.
Is there any parameter to be sent on the instance of client or response which will specify that the response should be in XML format.
I am using the timezone webservice given by earthtools.com through which we can get the timezone information if we provide latitude and longitude information
Regards,
Prayag
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如何在 HttpURLConnection 上设置内容类型?
而不是使用 text/plain正如链接的答案所示,您将需要使用 text/xml。
How to set Content Type on HttpURLConnection?
Instead of using text/plain as the linked answer suggests, you'll want to use text/xml.