I have a problem getting serverXMLHTTP to authenticate under Windows
x64.

If I run cscript test.vbs from the 64-bit command prompt. http.status
= 200

If I run cscript test.vbs from the 32-bit command prompt.
http.status = 401 (anonymous user tries to logon).

I don't know if this is vbscript or MSXML or Windows x64.

Anyone have any ideas?

Here is my code for test.vbs:

set http = wscript.createobject("MSXML2.ServerXMLHTTP")

http.open "GET", "http://xxxxx/test/logon_user2.asp", false
http.send

*** Sent via Developersdex http://www.developersdex.com ***