Invaldi ProgID: ASP 0177 (0x800401F3)

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

  1. #1

    Default 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)
    Invalid ProgID. For additional information specific to this message
    please visit the Microsoft Online Support site located at:
    [url]http://www.microsoft.com/contentredirect.asp[/url].

    The code where the error is generated is below.

    <%
    set objSearchAdmin = Server.CreateObject("Search.SearchAdmin.1")
    set objSearchServer = objSearchAdmin.SearchServer
    set objSearchCatalog = objSearchServer.SearchCatalogs
    CatalogList = "Intranet"
    %>

    Can somebody help me with this.

    Thank you
    Arun

    arunkumar_m2001@yahoo.com Guest

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. Invalid ProgID
      Are you sure you've got the syntax correct? It's usually: set oObj = server.createobject("component.class") "Craig" <donti@know.you> wrote in...
    4. 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...
    5. progid not found
      "Egbert Nierop (MVP for IIS)" <egbert_nierop@nospam.com> wrote in message news:uziNlEiZDHA.628@TK2MSFTNGP10.phx.gbl... to ok thanks, I'll have...
  3. #2

    Default Re: Invaldi ProgID: ASP 0177 (0x800401F3)

    <arunkumar_m2001@yahoo.com> wrote in message
    news:1129042821.119959.21230@g14g2000cwa.googlegro ups.com...
    > 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)
    > Invalid ProgID. For additional information specific to this message
    > please visit the Microsoft Online Support site located at:
    > [url]http://www.microsoft.com/contentredirect.asp[/url].
    >
    > The code where the error is generated is below.
    >
    > <%
    > set objSearchAdmin = Server.CreateObject("Search.SearchAdmin.1")
    > set objSearchServer = objSearchAdmin.SearchServer
    > set objSearchCatalog = objSearchServer.SearchCatalogs
    > CatalogList = "Intranet"
    > %>
    >
    > Can somebody help me with this.
    >
    > Thank you
    > Arun
    >

    I don't know if these will help.

    [url]http://authors.aspalliance.com/brettb/SiteServerSearchCatalogProperties.asp[/url]

    [url]http://ausbulk.com.au/links/links.htm[/url]
    A "view source" of this page reveals:

    <%
    ' Instantiate objects required to determine enabled catalogs.
    set objSearchAdmin = Server.CreateObject("Search.SearchAdmin.1")
    set objSearchServer = objSearchAdmin.SearchServer
    set objSearchCatalog = objSearchServer.SearchCatalogs

    ' Enumerate the enabled catalogs.
    for each objSearchCatalog in objSearchCatalog
    if LCase(objSearchCatalog.Status) = "enabled" then
    strName = objSearchCatalog.Name
    if CatalogList = "" then
    CatalogList = strName
    else
    CatalogList = CatalogList & "," & strName
    end if
    end if
    next
    %>


    McKirahan Guest

  4. #3

    Default Re: Invaldi ProgID: ASP 0177 (0x800401F3)

    Hi McKirahan:

    Thanks for your reply. Actually the code works fine in one server but
    the same code doesn't work in any other servers. I tried browsing thru
    other forums and made some changes in the registry settings etc and had
    no success. It's something related to permission settings.Do you have
    any ideas?

    Thank you
    Arun

    arunkumar_m2001@yahoo.com Guest

  5. #4

    Default Re: Invaldi ProgID: ASP 0177 (0x800401F3)

    <arunkumar_m2001@yahoo.com> wrote in message
    news:1129045099.935265.156490@g49g2000cwa.googlegr oups.com...
    > Hi McKirahan:
    >
    > Thanks for your reply. Actually the code works fine in one server but
    > the same code doesn't work in any other servers. I tried browsing thru
    > other forums and made some changes in the registry settings etc and had
    > no success. It's something related to permission settings.Do you have
    > any ideas?
    >
    > Thank you
    > Arun
    Sorry, no.


    McKirahan Guest

  6. #5

    Default Re: Invaldi ProgID: ASP 0177 (0x800401F3)

    0177 is a permissions error (confusingly trying to tell you it's ran out of
    memory??)

    Ensure IUSR_<machine> has read/write permissions for the files/folders your
    application is using.

    --
    Regards

    Steven Burn
    Ur I.T. Mate Group
    [url]www.it-mate.co.uk[/url]

    Keeping it FREE!

    <arunkumar_m2001@yahoo.com> wrote in message
    news:1129042821.119959.21230@g14g2000cwa.googlegro ups.com...
    > 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)
    > Invalid ProgID. For additional information specific to this message
    > please visit the Microsoft Online Support site located at:
    > [url]http://www.microsoft.com/contentredirect.asp[/url].
    >
    > The code where the error is generated is below.
    >
    > <%
    > set objSearchAdmin = Server.CreateObject("Search.SearchAdmin.1")
    > set objSearchServer = objSearchAdmin.SearchServer
    > set objSearchCatalog = objSearchServer.SearchCatalogs
    > CatalogList = "Intranet"
    > %>
    >
    > Can somebody help me with this.
    >
    > Thank you
    > Arun
    >

    Steven Burn Guest

  7. #6

    Default Re: Invaldi ProgID: ASP 0177 (0x800401F3)

    Hi Steven:

    Thanks for you reply.As you said

    Ensure IUSR_<machine> has read/write permissions for the files/folders
    your
    application is using.


    Where should I go and check these settings.

    Thanks again
    Arun

    arunkumar_m2001@yahoo.com Guest

  8. #7

    Default Re: Invaldi ProgID: ASP 0177 (0x800401F3)

    Right click the files/folders being used and click the Security tab
    (alternatively, see the Permissions Wizard in IIS)

    --
    Regards

    Steven Burn
    Ur I.T. Mate Group
    [url]www.it-mate.co.uk[/url]

    Keeping it FREE!

    <arunkumar_m2001@yahoo.com> wrote in message
    news:1129048625.199314.104840@f14g2000cwb.googlegr oups.com...
    > Hi Steven:
    >
    > Thanks for you reply.As you said
    >
    > Ensure IUSR_<machine> has read/write permissions for the files/folders
    > your
    > application is using.
    >
    >
    > Where should I go and check these settings.
    >
    > Thanks again
    > Arun
    >

    Steven Burn Guest

  9. #8

    Default Re: Invaldi ProgID: ASP 0177 (0x800401F3)

    Thanks Steven,

    I just did all the changes and gave permissions to IUSR_<machine> in
    reference to the article
    [url]http://support.microsoft.com/kb/q175804/[/url] - This article gives
    resolution for the error ASP 0177:80040154

    but still I have problems.And my error number is 0177:800401F3.
    I don't have any idea what other permisiion has to be changed.

    Thanks again
    Arun

    arunkumar_m2001@yahoo.com Guest

  10. #9

    Default Re: Invalid ProgID: ASP 0177 (0x800401F3)

    Thanks Steven,

    I just did all the changes and gave permissions to IUSR_<machine> in
    reference to the article
    [url]http://support.microsoft.com/kb/q175804/[/url] - This article gives
    resolution for the error ASP 0177:80040154

    but still I have problems.And my error number is 0177:800401F3.
    I don't have any idea what other permisiion has to be changed.

    Thanks again
    Arun

    arunkumar_m2001@yahoo.com Guest

  11. #10

    Default Re: Invalid ProgID: ASP 0177 (0x800401F3)

    Just wondering if anyone found a sol'n to this. I've given
    IUSR_<machinename> permissions all over the place, but still get the
    error. I've even added IUSR_<machinename> to the Administrators group
    w/o success. It only works when I disable anonymous access on the site
    in IIS.

    Thanks for any help. This is driving me nuts!

    gregfocker@earthlink.net Guest

  12. #11

    Default Re: Invaldi ProgID: ASP 0177 (0x800401F3)

    Invalid progID only happpens, when the DLL is -not- installed.
    It has nothing to do with permissions.

    CHeers


    --
    compatible web farm Session replacement for Asp and Asp.Net
    [url]http://www.nieropwebconsult.nl/asp_session_manager.htm[/url]


    <arunkumar_m2001@yahoo.com> wrote in message
    news:1129042821.119959.21230@g14g2000cwa.googlegro ups.com...
    > 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)
    > Invalid ProgID. For additional information specific to this message
    > please visit the Microsoft Online Support site located at:
    > [url]http://www.microsoft.com/contentredirect.asp[/url].
    >
    > The code where the error is generated is below.
    >
    > <%
    > set objSearchAdmin = Server.CreateObject("Search.SearchAdmin.1")
    > set objSearchServer = objSearchAdmin.SearchServer
    > set objSearchCatalog = objSearchServer.SearchCatalogs
    > CatalogList = "Intranet"
    > %>
    >
    > Can somebody help me with this.
    >
    > Thank you
    > Arun
    >
    Egbert Nierop \(MVP for IIS\) Guest

  13. #12

    Default Re: Invalid ProgID: ASP 0177 (0x800401F3)


    <gregfocker@earthlink.net> wrote in message
    news:1130434322.822517.36630@z14g2000cwz.googlegro ups.com...
    > Just wondering if anyone found a sol'n to this. I've given
    > IUSR_<machinename> permissions all over the place, but still get the
    > error. I've even added IUSR_<machinename> to the Administrators group
    > w/o success. It only works when I disable anonymous access on the site
    > in IIS.
    >
    > Thanks for any help. This is driving me nuts!
    Invalid progID only happpens, when the COM DLL is -not- installed.
    It has nothing to do with permissions.

    CHeers


    --
    compatible web farm Session replacement for Asp and Asp.Net
    [url]http://www.nieropwebconsult.nl/asp_session_manager.htm[/url]



    Egbert Nierop \(MVP for IIS\) Guest

  14. #13

    Default Re: Invalid ProgID: ASP 0177 (0x800401F3)

    My apologies for any confusion, I mis-read it as something else (didn't
    realise my co*k-up, till I saw [url]http://aspfaq.com/show.asp?id=2134[/url])

    --
    Regards

    Steven Burn
    Ur I.T. Mate Group
    [url]www.it-mate.co.uk[/url]

    Keeping it FREE!

    "Egbert Nierop (MVP for IIS)" <egbert_nierop@nospam.invalid> wrote in
    message news:eDDEHY53FHA.3036@TK2MSFTNGP15.phx.gbl...
    >
    > <gregfocker@earthlink.net> wrote in message
    > news:1130434322.822517.36630@z14g2000cwz.googlegro ups.com...
    > > Just wondering if anyone found a sol'n to this. I've given
    > > IUSR_<machinename> permissions all over the place, but still get the
    > > error. I've even added IUSR_<machinename> to the Administrators group
    > > w/o success. It only works when I disable anonymous access on the site
    > > in IIS.
    > >
    > > Thanks for any help. This is driving me nuts!
    >
    > Invalid progID only happpens, when the COM DLL is -not- installed.
    > It has nothing to do with permissions.
    >
    > CHeers
    >
    >
    > --
    > compatible web farm Session replacement for Asp and Asp.Net
    > [url]http://www.nieropwebconsult.nl/asp_session_manager.htm[/url]
    >
    >
    >

    Steven Burn Guest

  15. #14

    Default Re: Invalid ProgID: ASP 0177 (0x800401F3)

    > "Egbert Nierop (MVP for IIS)" <egbert_nierop@nospam.invalid> wrote in
    > message news:eDDEHY53FHA.3036@TK2MSFTNGP15.phx.gbl...
    > >.
    > > >
    > > > Thanks for any help. This is driving me nuts!
    > >
    > > Invalid progID only happpens, when the COM DLL is -not- installed.
    > > It has nothing to do with permissions.
    > >
    Not true. The .dll is installed and works with anonymous access
    disabled (while logged in as and admin) or using an admin account for
    anonymous access. An Invalid ProgID error occurs when using the
    IUSR_<machinename> account with anonymous access. Definitely a
    permission issue.

    gregfocker@earthlink.net Guest

  16. #15

    Default RE: Invaldi ProgID: ASP 0177 (0x800401F3)

    I meet the exactly the same problem.

    It's very weird.
    It was ok before, seems after an windows update, all new-regerstered component
    can not be create in IIS. But this component can be create in desktop
    application using CoInstance.

    I tried everything mentioned here, do many thing about security, but still
    not work.

    Just try like this:
    set rs = Server.CreateObject("ADODB.RecordSet")
    this code always work well, but after
    regster32 /u C:\Program Files\Common Files\System\ado\msado15.dll
    then
    regster32 C:\Program Files\Common Files\System\ado\msado15.dll
    it is supposed to that the Server.CreateObject can work as the same, but
    unfortunately we get the:
    > Server object, ASP 0177 (0x800401F3)
    > Invalid ProgID. For additional information specific to this message
    Maybe just only Microsoft can give the answer.

    Regards,
    Kevin



    "arunkumar_m2001@yahoo.com" wrote:
    > 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)
    > Invalid ProgID. For additional information specific to this message
    > please visit the Microsoft Online Support site located at:
    > [url]http://www.microsoft.com/contentredirect.asp[/url].
    >
    > The code where the error is generated is below.
    >
    > <%
    > set objSearchAdmin = Server.CreateObject("Search.SearchAdmin.1")
    > set objSearchServer = objSearchAdmin.SearchServer
    > set objSearchCatalog = objSearchServer.SearchCatalogs
    > CatalogList = "Intranet"
    > %>
    >
    > Can somebody help me with this.
    >
    > Thank you
    > Arun
    >
    >
    Kevin Guest

  17. #16

    Default RE: Invaldi ProgID: ASP 0177 (0x800401F3)

    I even tried add both IUSER_XXX and IWAM_XXX into local administrators group.

    Kevin

    "arunkumar_m2001@yahoo.com" wrote:
    > 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)
    > Invalid ProgID. For additional information specific to this message
    > please visit the Microsoft Online Support site located at:
    > [url]http://www.microsoft.com/contentredirect.asp[/url].
    >
    > The code where the error is generated is below.
    >
    > <%
    > set objSearchAdmin = Server.CreateObject("Search.SearchAdmin.1")
    > set objSearchServer = objSearchAdmin.SearchServer
    > set objSearchCatalog = objSearchServer.SearchCatalogs
    > CatalogList = "Intranet"
    > %>
    >
    > Can somebody help me with this.
    >
    > Thank you
    > Arun
    >
    >
    Kevin 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