|
Home > Archive > IIS Server Security > April 2005 > Permission denied: 'CreateObject' - error '800a0046'
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Permission denied: 'CreateObject' - error '800a0046'
|
|
| Luca Ferrari 2005-04-07, 7:49 am |
| 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
| |
| Jason Brown [MSFT] 2005-04-07, 7:49 am |
| 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.
"Luca Ferrari" <Luca Ferrari@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
|
|
|
|
|