I get the following error message when I run a classic ASP page in my .net20 account as I try to access a DCOM object
Server object error 'ASP 0178 :
80070005'
Server.CreateObject Access Error
/test.asp, line
32
The call to Server.CreateObject failed while checking
permissions. Access is denied to this object.
The code I am executing is:
Dim LoginValue |
Set LoginValue = Server.CreateObject("OdysseyWeb.WebUser") |
I have tried adding Network Services to the DCOM config security as suggested in other forum posts, but I still get the same error message.
http://forums.asp.net/t/1093228.aspx
I can run the DCOM via an interop with .net 2 ASPX page. I don't know what the difference is in security between classic asp and aspx?
My IIS is running anonymous with a domain user and I have integrated security checked. My app pool is running under Network Services (predefined).
My decom is running with impersonate checked for me automatically.