Home All Groups Group Topic Archive Search About

Permission denied: 'CreateObject' - error '800a0046'

Author
7 Apr 2005 8:43 AM
Luca Ferrari
Hi, I have a problem with the  asp file

<%
dim objWebDav
set objWebDav = CreateObject("WebDavRedirect.Redirect")
objWebDav.Redirigi "http://testdevserver02.gmserv.com/prova.asp"
set objWebDav = Nothing
%>

The error message is

Microsoft VBScript runtime error '800a0046'
Permission denied: 'CreateObject'
/test.asp, line 3

I have create a COM+ Application named WebDavRedirect with
security   --> packet/impersonate
identity    --> this user
activation --> server application

Thanks

Author
7 Apr 2005 10:49 AM
Jason Brown [MSFT]
Does the ASP page require authentication? If it doesn't, then it'll be
instantiating the component in the context of the IUSR guest account, which
is a low privilege account. try it with a stated identity in the package
properties.


--
Jason Brown
Microsoft GTSC, IIS

This posting is provided "AS IS" with no warranties, and confers no rights.


Show quoteHide quote
"Luca Ferrari" <Luca Ferr***@discussions.microsoft.com> wrote in message
news:657C64DF-353B-438B-B530-2B9996AE6422@microsoft.com...
> Hi, I have a problem with the  asp file
>
> <%
> dim objWebDav
> set objWebDav = CreateObject("WebDavRedirect.Redirect")
> objWebDav.Redirigi "http://testdevserver02.gmserv.com/prova.asp"
> set objWebDav = Nothing
> %>
>
> The error message is
>
> Microsoft VBScript runtime error '800a0046'
> Permission denied: 'CreateObject'
> /test.asp, line 3
>
> I have create a COM+ Application named WebDavRedirect with
> security   --> packet/impersonate
> identity    --> this user
> activation --> server application
>
> Thanks