Link to home
Start Free TrialLog in
Avatar of ClinLabsLIS
ClinLabsLIS

asked on

msxml3.dll error '80070005' --- Access is denied.

I have ASP website. The connection string to database is stored in an xml file.
The code is - dim myServer,myLogin,myPwd
      dim xmlDOC
      set xmlDOC = Server.CreateObject("Microsoft.XMLDOM")
      xmlDOC.async = "False"
      xmlDOC.load(Server.MapPath("..\..\CONNECTION\connE.xml"))

If the anonymous user option website's security is checked, i get the above error. If the integration authentication is checked the application is working fine. How do i make this website work for anonymous user option.

thanks in advance

DG
ASKER CERTIFIED SOLUTION
Avatar of rdivilbiss
rdivilbiss
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Try forward slashes in the Server.MapPath(). I'm not sure this is your problem but it does look like a problem.
Gary Davis
@gardavis,

Good eye.  Could be that as well or instead of what I suggested.
Avatar of ClinLabsLIS
ClinLabsLIS

ASKER

Thanks for the help. I gave the users IUSR and Network read privileges to this file and it is now working fine.
Great!  Glad it worked out.