Javascript Msxml2.XMLHTTP terminal server access denied
Posted
by Jeroen
on Stack Overflow
See other posts from Stack Overflow
or by Jeroen
Published on 2010-03-31T08:48:09Z
Indexed on
2010/03/31
8:53 UTC
Read the original article
Hit count: 415
Hi,
var xmlHttpRequest = new ActiveXObject("Msxml2.XMLHTTP");
xmlHttpRequest.open("POST", "http://vat/_vti_bin/lists.asmx", false);
How can I let this script work on a Terminal server? When I open it on my local pc, it works, but when I do the same thing in a browser on a Terminal server, I get Access Denied
.
I tried using ServerXMLHTTP
, but then i get Cannot create automation object
© Stack Overflow or respective owner