标签: android web-services xmldocument ksoap
我从.net网络服务收到xmldocument SoapObject result =(SoapObject)soapEnvelope.bodyIn;
问题是如何从结果中获取xml文档并解析它?
答案 0 :(得分: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。