Invaldi ProgID: ASP 0177 (0x800401F3)

This is a discussion on Invaldi ProgID: ASP 0177 (0x800401F3) within the Inetserver forums in Microsoft Tools category; 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 http://www.nieropwebconsult.nl/asp_session_manager.htm <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: > http://www.microsoft.com/contentredirect.asp . > > The code ...

Go Back   Application Development Forum > Microsoft Tools > Inetserver

Object Mix

Register FAQ Calendar Search Today's Posts Mark Forums Read
  #11  
Old 10-31-2005, 02:03 AM
Egbert Nierop \(MVP for IIS\)
Guest
 
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
http://www.nieropwebconsult.nl/asp_session_manager.htm


<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:
> http://www.microsoft.com/contentredirect.asp.
>
> 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
>


Reply With Quote
  #12  
Old 11-02-2005, 05:13 AM
Egbert Nierop \(MVP for IIS\)
Guest
 
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
http://www.nieropwebconsult.nl/asp_session_manager.htm



Reply With Quote
  #13  
Old 11-02-2005, 06:15 AM
Steven Burn
Guest
 
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 http://aspfaq.com/show.asp?id=2134)

--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

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
> http://www.nieropwebconsult.nl/asp_session_manager.htm
>
>
>



Reply With Quote
  #14  
Old 11-04-2005, 02:06 AM
gregfocker@earthlink.net
Guest
 
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.

Reply With Quote
  #15  
Old 11-05-2005, 08:26 AM
=?Utf-8?B?S2V2aW4=?=
Guest
 
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:
> http://www.microsoft.com/contentredirect.asp.
>
> 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
>
>

Reply With Quote
  #16  
Old 11-05-2005, 08:40 AM
=?Utf-8?B?S2V2aW4=?=
Guest
 
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:
> http://www.microsoft.com/contentredirect.asp.
>
> 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
>
>

Reply With Quote
Reply


Thread Tools
Display Modes


All times are GMT -5. The time now is 03:03 PM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vB Ad Management by =RedTyger=

In an effort to better serve ads to our visitors, cookies are used on objectmix.com. For more information, check out our Privacy Policy.