ASP Access Denied error
am 27.12.2006 12:29:39 von marijuanated
Hi,
I am getting the following error while trying to access an ASP page.
Server object error 'ASP 0178 : 80070005'
Server.CreateObject Access Error
/hypoccs/Report/PFR85.asp, line 15
The call to Server.CreateObject failed while checking permissions.
Access is denied to this object.
Can somebody help me out
Thanks,
Sundar
Re: ASP Access Denied error
am 27.12.2006 13:05:32 von Daniel Crichton
marijuanated@gmail.com wrote on 27 Dec 2006 03:29:39 -0800:
> Hi,
>
> I am getting the following error while trying to access an ASP page.
>
> Server object error 'ASP 0178 : 80070005'
>
> Server.CreateObject Access Error
>
> /hypoccs/Report/PFR85.asp, line 15
>
> The call to Server.CreateObject failed while checking permissions.
> Access is denied to this object.
>
> Can somebody help me out
>
> Thanks,
> Sundar
On Line 15 of that ASP script there is a call to Server.CreateObject to
instantiate an external object, and the account that IIS is running under
does not have permissions to execute that external object. You will need to
look at line 15 to work out what you are trying to call, and from there
determine what permissions you need to set to get it to work.
Dan