I am automating the navigation of a website.
When I reach the end, it changes to xml.

So my axwebbrowser1 has a bunch of xml data in it.

So here is what I am trying to do

Dim xmlText As String
Dim doc As New XmlDocument()
Dim myElem As XmlElement
xmlText = AxWebBrowser1.Document.Body.OuterHTML
doc.LoadXml(xmlText)

But the problem is I get an exception error at the doc.loadxml(xmltext)
I found a streamreader example but I already have the xml data in the axwebbrowser control.
How do I get it so I can parse through the nodes?

Thanks for any information