I am getting XML from a web service. Here is what the XML looks like:
Text
You need to enclose your
elements in a surrounding element as XML Documents can have only one root node:
Text
Text
Text
Text
As you're receiving this markup from somewhere else, rather than generating it yourself, you may have to do this yourself by treating the response as a string and wrapping it with appropriate tags, prior to attempting to parse it as XML.
So, you've a couple of choices:
node) and process each as a distinct XML Document