Reputation: 51
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?
Upvotes: 0
Views: 3164
Reputation: 29912
For debugging you can see the xml following the tips on the wiki.
For parsing you should not parse manually and you should not use bodyIn but rather getResponse on envelope.
Upvotes: 1