ActiveX component can't create object

Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default ActiveX component can't create object

    I'm having problems setting up a monstrous COM+ Frankenapp on my local
    machine. The application works on the development server when I access
    it from outside, but I can't use my local version for debugging. The
    application works until I attempt to use a portion that requires some
    older .dlls, at which point I get "ActiveX component can't create
    object" error in dllhost.exe. The point at which it breaks is in a
    VBScript:

    set xSession = Server.CreateObject("xSession.Session")

    While reading up on the problem I noted several posts suggesting that
    there was a problem with permissions. I set up both IUSR_<machine> and
    IWAM_<machine> as administrators, as well as specifically granting read
    permissions to the dlls in question, and this did not fix the problem.
    I have registered the dlls multiple times, and changed any setting I
    could think of in IIS. I am at my wits end, any help would be
    appreciated.

    Thanks,
    - Paul

    Paul W Guest

  2. Similar Questions and Discussions

    1. ActiveX component can’t create object‘AcroExch.App’
      I have the same problem. With only Adobe Acrobat 5.0 installed all works fine, then I have installed the Acrobat Reader 8.0 and now with the reader...
    2. Error: 429 ActiveX Component Can't create Object
      Hi all, I have Adobe Acrobat Professional 7.0 installed on an NT Server. Now, the question is, can I use its objects in an intranet ASP...
    3. Help on this error -- ActiveX component can't create object
      I got this error on the new environment. It works on the old environment. New: window 2003 server. iis 6.0, Microsoft visual basic 6.0. old:...
    4. ActiveX cannot create object component -HelpPlease
      Hi, I tried to open an Access application that I developed moths ago but I keep getting the error while trying to link the front-end to the...
    5. Activex component can't create object error
      Well Tony, you are right. at start up I get this error:cannot load DLL - and this gets highlighted: Set dbs = CurrentDb() But, as I said,...
  3. #2

    Default Re: ActiveX component can't create object


    "Paul W" <Paul.Wonderly@medcere.com> wrote in message
    news:1149176625.675687.183250@j55g2000cwa.googlegr oups.com...
    > I'm having problems setting up a monstrous COM+ Frankenapp on my local
    > machine. The application works on the development server when I access
    > it from outside, but I can't use my local version for debugging. The
    > application works until I attempt to use a portion that requires some
    > older .dlls, at which point I get "ActiveX component can't create
    > object" error in dllhost.exe. The point at which it breaks is in a
    > VBScript:
    >
    > set xSession = Server.CreateObject("xSession.Session")
    >
    > While reading up on the problem I noted several posts suggesting that
    > there was a problem with permissions. I set up both IUSR_<machine> and
    > IWAM_<machine> as administrators, as well as specifically granting read
    > permissions to the dlls in question, and this did not fix the problem.
    > I have registered the dlls multiple times, and changed any setting I
    > could think of in IIS. I am at my wits end, any help would be
    > appreciated.
    >
    > Thanks,
    > - Paul
    >
    Have you got enforce access checks on the COM+ app?

    What is the identity that the COM+ app runs under and does that have access
    to the dlls?


    Anthony Jones 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