I have my xml file as a response in result.getProperty(0).
The code is as follows:
SoapObject result=(SoapObject)envelope.bodyIn;
System.out.println("value of result " + result);
How can I store this xml in result.getProperty(0) into my sdcard/any other location so that I can parse it using SAXParser?
Regards,
sneha
I solved the problem in the following way :
Then I use SAXParser and parse the xml.
Thanks,
Sneha