I am trying to load som XML down from a file on my domain, I am using a Httprequest like this
set xmlHttp = CreateObject("Microsoft.XMLHTTP")
xmlHttp.open ("GET", false)
xmlHttp.send()
xmlDoc=xmlHttp.responseText
In connection with this I can mention that the file I am trying to access is on the same domain as the file I shold bee showed in. The Domain I also trusted in IE and security settings are low. And I still get permission denied went I try to access the file. How that be
Soren
set xmlHttp = CreateObject("Microsoft.XMLHTTP")
xmlHttp.open ("GET", false)
xmlHttp.send()
xmlDoc=xmlHttp.responseText
In connection with this I can mention that the file I am trying to access is on the same domain as the file I shold bee showed in. The Domain I also trusted in IE and security settings are low. And I still get permission denied went I try to access the file. How that be
Soren