Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Do you want to access the SOAP XML response and parse it manually? – Robert May 17 '11 at 14:13
i want to see the xmldocument that i receive from the web service so... – user742362 May 17 '11 at 14:28
But why are you using then kSoap - kSoap parses the response and allows you to access the parameters by their index and/or name? If you want to parse the response XML on your own you should do everything by hand and use HTTPUrlConnection. – Robert May 18 '11 at 15:08

1 Answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.