I have a XML string comming from a Rest WS that I created on .net, I am able to consume the websevice and get the return I need, however this returns comes back as String.

XML from WS:

<Example>
  <Name> Carlos </name>
  <ID> 1 </ID>
</Example>

Once retrieved in Java, it looks like this:

 String response = "<Example> <Name> Carlos </name> <ID> 1 </ID> </Example>"

My idea is to parse this back to XML so I can work with it, I already have a handler class that would take these values, but I cant figure out how to parse it.

My idea is to populate a list adapter with this information since it would return many Names and IDs on a single query.

Thanks

link|improve this question
IMHO you're confusing file format (XML) with data object that contains it (String). Your String response is already an XML. – m0skit0 Oct 28 '11 at 11:37
feedback

1 Answer

up vote 1 down vote accepted

My idea is to parse this back to XML

I think you mean you want to create some kind of Structure containing those strings.

You have options of using the Pull Parser, SAX Parser or DOM based parser

I suggest you use the lightweight SAX parser for this

link|improve this answer
Thanks I will give it a try – Im Rick James Oct 28 '11 at 15:41
feedback

Your Answer

 
or
required, but never shown

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