thechasboi
01-26-2007, 11:36 AM
I have these pages that use a get.xml from certain asp pages. I read in this post somewhere that there is an issue with the updated version of xml in 2k3 where it breaks older code. I tried to change the server object as suggested and get redirected to the main sites home page. I get this error with this server object name "msxml3.dll error '80070005' Access is denied. "
url = "http://" & request.ServerVariables("SERVER_NAME") & "/scripts/dragndrop/artist.asp?page=bio&id=174"
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.Open "GET", url, False
xml.Send
Response.Write("<script src=""/scripts/javascript/browser.js"" type=""text/javascript""></script>" & xml.responseText)
Set xml = Nothing
And with set of code I get redirected to the main site.
url = "http://" & request.ServerVariables("SERVER_NAME") & "/scripts/dragndrop/artist.asp?page=bio&id=174"
Set xml = Server.CreateObject("Msxml2.ServerXMLHTTP.4.0")
xml.Open "GET", url, False
xml.Send
Response.Write("<script src=""/scripts/javascript/browser.js"" type=""text/javascript""></script>" & xml.responseText)
Set xml = Nothing
url = "http://" & request.ServerVariables("SERVER_NAME") & "/scripts/dragndrop/artist.asp?page=bio&id=174"
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.Open "GET", url, False
xml.Send
Response.Write("<script src=""/scripts/javascript/browser.js"" type=""text/javascript""></script>" & xml.responseText)
Set xml = Nothing
And with set of code I get redirected to the main site.
url = "http://" & request.ServerVariables("SERVER_NAME") & "/scripts/dragndrop/artist.asp?page=bio&id=174"
Set xml = Server.CreateObject("Msxml2.ServerXMLHTTP.4.0")
xml.Open "GET", url, False
xml.Send
Response.Write("<script src=""/scripts/javascript/browser.js"" type=""text/javascript""></script>" & xml.responseText)
Set xml = Nothing