views:

19

answers:

1

In my application I get a response from a web service which is in xml format. I am storing that response in a string and then would like to parse the string. Is it possible to do this or do I need to save the xml data into a file with 'xml' extension?

+1  A: 

Turn your string into an InputStream, and parse from there.

Ignacio Vazquez-Abrams