Can anyone offer any advice/solutions as to why MSXML seems to timeout when processing a page. I have included the code below and as you can see I'm GETting a page, parsing it and then saving it to file. If I use an external URL ie Google.com it works fine but using any internal IP address causes it to timeout!!
Function convertHTML(myPage, myQuery, myNum)
Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")
xml.Open "GET", " False 'this works
xml.Open "GET", " False 'this doesn't work
xml.Send
rawHTML = xml.responseText
WRITE TO FILE USING FSO
Set xml = Nothing
Set filesys = Nothing
End Function
Any ideas?
Thanks in advance,
Chris
Function convertHTML(myPage, myQuery, myNum)
Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")
xml.Open "GET", " False 'this works
xml.Open "GET", " False 'this doesn't work
xml.Send
rawHTML = xml.responseText
WRITE TO FILE USING FSO
Set xml = Nothing
Set filesys = Nothing
End Function
Any ideas?
Thanks in advance,
Chris