Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Local System account permission with msxml

Status
Not open for further replies.

Phil99

Programmer
Jul 12, 2002
32
0
0
GB
Hi

I'm able to successfully run the following script when logged on to a server with an admin account.

var host = "";
var port = "";
var action = "";
var client_id = "";
var text = "";
var destaddr = "";
var password = "";

var url = " + host + ":" + port + "/" + action + "/"; var query = "client_id=" + client_id + "&text=" + escape(text)
+ "&destaddr="+ destaddr + "&password=" + password;

var xml = new ActiveXObject("Microsoft.XMLHTTP");

xml.Open("POST", url, false);
xml.Send(query);
result = xml.responseText;

But when I attempt to run the script using the Local System account I get the following error message:

"msxml3.dll The system cannot locate the resource specified."

I have to run the script using the Local System account.

Any suggestions on how to fix this will be much appricated.

Thanks

Phil
 
Why not posting in the JavaScript forum ?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top