Error in VBScript http request

Posted by Nate on Server Fault See other posts from Server Fault or by Nate
Published on 2010-04-11T04:25:38Z Indexed on 2010/04/11 4:33 UTC
Read the original article Hit count: 432

Filed under:
|

I asked this question here, but it turns out the issue is in our server configuration. The .vbs script has been reduced to the following:

Dim http
Set http = CreateObject("MSXML2.ServerXMLHTTP")
http.Open "GET" , "http://google.com", False
http.Send

This triggers the same error message every time:

msxml3.dll: A security problem occurred.

The permissions on the .dll are set correctly, and nothing else should be preventing access to that file, so what could be causing the problem?

© Server Fault or respective owner

Related posts about vbscript

Related posts about msxml