Hi All,
We are facing a problem to make a connection to the Active
Directory Server which is upgraded to Win 2003 from 2000. The ASP
page used to work on Windows 2000.
This is the code which we are using to make the connection. But
i am getting the error "2147016694 "
dim strLDAP_IP
Set oRootDSE = GetObject(sLDAP_IP)
Set oCon = Server.CreateObject("ADODB.Connection")
sUser = sLDAP_USER
oCon.Provider = "ADsDSOObject"
oCon.Open "ADProvider",sUser,sLDAP_PWD
Response.Write "Sample 1"
Response.Write err.number
if err.number <>0 then
Response.Write ("Inside Error") & Err.Description & "<br>"
OpenADConnection=False
end if
As we know that Windows 2003 server has a high security set up. AD
has set up to an anonymous access.
Any help on this issue is highly appreciated.
Thank you
Haritha