Newby : Access denied creating com object

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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 ...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139