CreateObject --> ASP 0177

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

  1. #1

    Default CreateObject --> ASP 0177

    Bonjour,

    I just install Windows Server 2003 (+IIS6) and my old application doesn't
    work anymore because i'm unable to use server.createobject. My error is :

    ---------------------------------------------------------
    Objet Server erreur 'ASP 0177 : 800401f3'

    Échec de Server.CreateObject

    /Main.asp, ligne 26

    800401f3
    ---------------------------------------------------------

    My code :
    ---------------------------------------------------------
    set objUpload = server.CreateObject("Dundas.Upload.2")
    ---------------------------------------------------------

    This code works fine on Windows 2000 Server.
    This code works fine on Windows 2003 Server only if I add IUSR_MACHINE to
    Administrators groups.

    So the Components is installed and it's a permissions issue. I tried to give
    IUSR_MACHINE all access to the dll directory and system32 directory but it
    still doesn't work

    Does anyaone has an Idea ?

    I'm gonna crazy !


    Free Guest

  2. Similar Questions and Discussions

    1. 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)...
    2. ASP 0177 : c0000005 .. Need help
      Hi, I m getting crazy since I try to use a vb6 component with Windows 2003 I get this error.. There's something strange, because it works on...
    3. Problem: 'ASP 0177 : 80131700'
      What does this asp errorcode mean I'm trying to create a c# class through interop
    4. WSC CreateObject fails in ASP with 0177 error Ran Out of Memory
      Greetings, This seems to be the right group to ask this question however if anyone can suggest a more appropriate group then please do so. I...
    5. 006~ASP 0177~Server.CreateObject Failed~
      I am trying to communicate between an ASP page and a SQL database and I am getting the following error message on the browser: 006~ASP...
  3. #2

    Default RE: CreateObject --> ASP 0177

    Have you registered the component?

    Try

    regsvr32 foo.dll

    Thanks

    "Free" wrote:
    > Bonjour,
    >
    > I just install Windows Server 2003 (+IIS6) and my old application doesn't
    > work anymore because i'm unable to use server.createobject. My error is :
    >
    > ---------------------------------------------------------
    > Objet Server erreur 'ASP 0177 : 800401f3'
    >
    > Échec de Server.CreateObject
    >
    > /Main.asp, ligne 26
    >
    > 800401f3
    > ---------------------------------------------------------
    >
    > My code :
    > ---------------------------------------------------------
    > set objUpload = server.CreateObject("Dundas.Upload.2")
    > ---------------------------------------------------------
    >
    > This code works fine on Windows 2000 Server.
    > This code works fine on Windows 2003 Server only if I add IUSR_MACHINE to
    > Administrators groups.
    >
    > So the Components is installed and it's a permissions issue. I tried to give
    > IUSR_MACHINE all access to the dll directory and system32 directory but it
    > still doesn't work
    >
    > Does anyaone has an Idea ?
    >
    > I'm gonna crazy !
    >
    >
    >
    Keith. O 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