Dear All,
I have a strange error. I could have my ASP code work in IIS of windows xp, but it does not work when i upload it to remote server using windows server 2003. Here below my code,
----------------------------------------------------------------------------
sVal1 = "aaaa"
sVal2 = "bbbb"
sForm="auth_user=" & sVal1 & "&auth_password=" & sVal2
Set oXMLHttp=Server.CreateObject("MSXML2.XMLHTTP")
oXMLHttp.open "POST", "http://test.com/authenticate", false
oXMLHttp.setRequestHeader "lastCached", now()
oXMLHttp.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
oXMLHttp.send sForm
response.Write(oXMLHttp.ResponseText)
----------------------------------------------------------------------------
and i got the error,
msxml3.dll error '800c0005'
The system cannot locate the resource specified.
/includes/authen/authentication.asp, line 21
Everyone, your help is much appriciated!!!