如何从soapobject中获取xml文件

发布于 2024-11-07 14:29:42 字数 113 浏览 0 评论 0原文

我从 .net Web 服务接收 xmldocument SoapObject 结果=(SoapObject)soapEnvelope.bodyIn;

问题是如何从结果中取出xml文档并解析它?

I receive xmldocument from .net web service
SoapObject result=(SoapObject)soapEnvelope.bodyIn;

and the problem is how to take the xml document from the result and parse it?

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

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

发布评论

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

评论(1

迎风吟唱 2024-11-14 14:29:42

为了进行调试,您可以按照 wiki 上的提示查看 xml。

http://code.google.com/p/ksoap2 -android/wiki/CodingTipsAndTricks#How_to_see_raw_xml_request_and_response_e.g._for_debugging

对于解析,您不应手动解析,也不应在信封上使用 bodyIn 而是使用 getResponse 。

For debugging you can see the xml following the tips on the wiki.

http://code.google.com/p/ksoap2-android/wiki/CodingTipsAndTricks#How_to_see_raw_xml_request_and_response_e.g._for_debugging?

For parsing you should not parse manually and you should not use bodyIn but rather getResponse on envelope.

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