Ask a Question related to ASP Components, Design and Development.
-
arunkumar_m2001@yahoo.com #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)
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
-
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... -
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... -
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... -
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... -
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... -
McKirahan #2
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
-
arunkumar_m2001@yahoo.com #3
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
-
McKirahan #4
Re: Invaldi ProgID: ASP 0177 (0x800401F3)
<arunkumar_m2001@yahoo.com> wrote in message
news:1129045099.935265.156490@g49g2000cwa.googlegr oups.com...Sorry, no.> 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
McKirahan Guest
-
Steven Burn #5
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
-
arunkumar_m2001@yahoo.com #6
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
-
Steven Burn #7
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
-
arunkumar_m2001@yahoo.com #8
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
-
arunkumar_m2001@yahoo.com #9
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
-
gregfocker@earthlink.net #10
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
-
Egbert Nierop \(MVP for IIS\) #11
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
-
Egbert Nierop \(MVP for IIS\) #12
Re: Invalid ProgID: ASP 0177 (0x800401F3)
<gregfocker@earthlink.net> wrote in message
news:1130434322.822517.36630@z14g2000cwz.googlegro ups.com...Invalid progID only happpens, when the COM DLL is -not- installed.> 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!
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
-
Steven Burn #13
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
-
gregfocker@earthlink.net #14
Re: Invalid ProgID: ASP 0177 (0x800401F3)
Not true. The .dll is installed and works with anonymous access> "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.
> >
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
-
Kevin #15
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:Maybe just only Microsoft can give the answer.> Server object, ASP 0177 (0x800401F3)
> Invalid ProgID. For additional information specific to this message
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
-
Kevin #16
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



Reply With Quote

