如何从soapobject中获取xml文件
我从 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了进行调试,您可以按照 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.