Server object, ASP 0177 (0x800401F3) Invalid Class String

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

  1. #1

    Default Server object, ASP 0177 (0x800401F3) Invalid Class String

    First of all, I have read all of the solutions I could possibly find for this
    issue. Secondly, none of them work for me.

    I am using: WinXP Pro SP2, VB6, ASP

    Here is a breakdown of my problem:

    - I have created a custom ActiveX DLL named DLObjects with a class named
    DLFactory.
    - I have registered this DLL
    - I created a COM+ application and set the Identity to the Administrator
    account
    - I CAN instantiate the DLL with VB6
    - I CAN NOT instantiate the DLL with ASP
    - I have verified it is registered
    - I have verified IUSR and IWAM accounts have access to the DLL folder
    - I have used other third-party DLLs without an issue

    Here is the abridged code:

    <%
    Dim Factory
    Set Factory = Server.CreateObject("DLObjects.DLFactory") '<-- Error here.
    Yes, it is spelled correctly
    Set Factory = Nothing
    %>

    As stated before, I am able to use this DLL without issue in VB6 on the same
    machine. I am also able to copy to DLL to a Win2k3 machine, register, and
    use it in ASP.

    This is driving me completely mad as I have been programming professionally
    for 13 years and have NEVER had an issue that has stumped me like this... I
    am sure it is something simple (but my pride hopes otherwise). Any and all
    insights into this issue is more than appreciated.

    Please remember that I have read and tried all of the solutions for this and
    none have worked so please do not suggest these
    basic-easy-to-find-already-checked answers:

    - IUSR/IWAM Permissions
    - Registering DLL / COM+
    - Checking the spelling

    Thanks again in advance for your help!!
    Kevin Guest

  2. Similar Questions and Discussions

    1. Server object error 'ASP 0177 : 8007000e'
      Hi, I have a Windows 2003 server running IIS 6.0.I have an ASP page in which I am trying to create an instance of an ActiveX control using...
    2. Server object, ASP 0177 (0x800401F3)
      I have a Win2k server running IIS5.0. I have another server in the network that has a web based application that i would like to make public. On...
    3. Invaldi ProgID: ASP 0177 (0x800401F3)
      Hi all: I am getting a problem when I try to run my asp page.The error I am getting is Error Type: Server object, ASP 0177 (0x800401F3)...
    4. Server object error 'ASP 0177 : 800401f3'
      I am not able to figure this one out. I am getting this message when i am trying to send confirmation of an order on my localhost testing site. I...
    5. Server object, ASP 0177 (0x800401F3) Error? SOS
      Error Type: Server object, ASP 0177 (0x800401F3) Invalid ProgID. For additional information specific to this message please visit the Microsoft...
  3. #2

    Default RE: Server object, ASP 0177 (0x800401F3) Invalid Class String


    > - I have used other third-party DLLs without an issue
    >
    Other DLLs, like msado15.dll, also has the same error when unregerster then
    re-regerster using regsvr32.exe.
    Kevin Guest

  4. #3

    Default Re: Server object, ASP 0177 (0x800401F3) Invalid Class String


    "Kevin" <Kevin@discussions.microsoft.com> wrote in message
    news:506B52D9-EE61-4716-A295-17F5D1A842C3@microsoft.com...
    > First of all, I have read all of the solutions I could possibly find for
    > this
    > issue. Secondly, none of them work for me.
    > use it in ASP.
    >
    > This is driving me completely mad as I have been programming
    > professionally
    > for 13 years and have NEVER had an issue that has stumped me like this...
    > I
    > am sure it is something simple (but my pride hopes otherwise). Any and
    > all
    > insights into this issue is more than appreciated.
    Sorry, numbers hardly do count.
    Try to run regmon from sysinternals and filemon. You -will- see what is
    missing or what permission is wrong.

    --
    compatible web farm Session replacement for Asp and Asp.Net
    [url]http://www.nieropwebconsult.nl/asp_session_manager.htm[/url]
    > Please remember that I have read and tried all of the solutions for this
    > and
    > none have worked so please do not suggest these
    > basic-easy-to-find-already-checked answers:
    >
    > - IUSR/IWAM Permissions
    > - Registering DLL / COM+
    > - Checking the spelling
    >
    > Thanks again in advance for your help!!
    Egbert Nierop \(MVP for IIS\) 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