Search code examples
htmlxmlmsxml

Parse HTML to XML


I am trying to figure out how to parse HTML to XML, but I cannot figure it out. I want to use the MSXML2.ServerXMLHTTP object (in an .asp file).

<% 
url = "http://www.website.com/file.asp"
set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP") 
xmlhttp.open "POST", url, false 
xmlhttp.send
Response.write xmlhttp.responseText
set xmlhttp = nothing 
%>

This gives me the text, but I really don't know where to go from here.


Solution

  • I think problem is in HEAD of HTML file. From MSDN: resonse should return XML ("text/xml"), but your http://www.website.com/file.asp returns HTML content, with ("text/html") mime type.