I have a SOAP message that comes back from an external system to my Java class as a String. I need to convert this to XML, then search for text in certain elements. Anybody have quick method, or point me to a tutorial for this? Here is a sample of what I'm trying to do: String Returned
That would work. Really, I just want an easy search and grab method, rather than running through a String object searching for text and grabbing data, it would be nice to just grab values of tags.
p.s. : please ignore the fact that the XML above is malformed, there shouldn't be a closing </faultcode> at the bottom as that tag is closed on the same line as it is declared.