Ask a Question related to ASP.NET Security, Design and Development.
-
JK #1
Newby : Access denied creating com object
Hello,
When I try to create a Word application object from a webform using
server.createobject("Word.Application") I get this error "Access denied"
Does anyone know what I am doing wrong? Thanks for any help!
Joost
JK Guest
-
Access is denied with FileStream object
Hi, I am writing a web service which contains a function that tries to open up a FileStream. When I try to do this I get the following error ... -
Access denied while trying QI on a DCOM object
We have a Web Service written in C# that accesses an ATL service via DCOM. This all works great when both are on the same machine. When I move to... -
HELP! "Access is denied to this object." - Server object error 'ASP 0178 : 80070005'
Hi, When I try to do Server.CreateObject on an activeX DLL, I receive the following message: ''''''''''''''''''''''' Server object error 'ASP... -
Access denied when creating Access application object
In an ASP file I am running the following in VBScript in order to extract data from an Access 2002 MDB file which is physically located in the... -
Access denied error while using excel object
In order to give ASP.NET the permissions it needs to use Excel, you'll likely need to add the line <identity impersonate="true"/> to your web.config... -
Chris Jackson #2
Re: Newby : Access denied creating com object
Since you are using web forms, then you need to check the permissions on
your object to ensure that the user token that the ASP.NET worker process is
running under (by default, MACHINE\ASPNET) has the appropriate permissions.
You may also want to consider creating an interop assembly, which will give
you strong typing and make using this COM object as easy as using a .NET
assembly. VS.NET will do this for you, and you can also use the SDK tool
tlbimp.exe.
--
Chris Jackson
Software Engineer
Microsoft MVP - Windows Client
Windows XP Associate Expert
--
More people read the newsgroups than read my email.
Reply to the newsgroup for a faster response.
(Control-G using Outlook Express)
--
"JK" <joost.kooman@nospamlf.fr> wrote in message
news:bs7l54$7v0$1@news.tiscali.fr...> Hello,
>
> When I try to create a Word application object from a webform using
> server.createobject("Word.Application") I get this error "Access denied"
>
> Does anyone know what I am doing wrong? Thanks for any help!
>
> Joost
>
>
Chris Jackson Guest



Reply With Quote

