Invaldi ProgID: ASP 0177 (0x800401F3)

This is a discussion on Invaldi ProgID: ASP 0177 (0x800401F3) within the Inetserver forums in Microsoft Tools category; 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...

Go Back   Application Development Forum > Microsoft Tools > Inetserver

Object Mix

Register FAQ Calendar Search Today's Posts Mark Forums Read
  #1  
Old 10-11-2005, 11:00 AM
arunkumar_m2001@yahoo.com
Guest
 
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:
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
  #2  
Old 10-11-2005, 11:26 AM
McKirahan
Guest
 
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:
> 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
>



I don't know if these will help.

http://authors.aspalliance.com/brett...Properties.asp

http://ausbulk.com.au/links/links.htm
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
%>


Reply With Quote
  #3  
Old 10-11-2005, 11:38 AM
arunkumar_m2001@yahoo.com
Guest
 
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

Reply With Quote
  #4  
Old 10-11-2005, 12:04 PM
McKirahan
Guest
 
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.


Reply With Quote
  #5  
Old 10-11-2005, 12:06 PM
Steven Burn
Guest
 
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
www.it-mate.co.uk

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:
> 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
  #6  
Old 10-11-2005, 12:37 PM
arunkumar_m2001@yahoo.com
Guest
 
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

Reply With Quote
  #7  
Old 10-11-2005, 03:18 PM
Steven Burn
Guest
 
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
www.it-mate.co.uk

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
>



Reply With Quote
  #8  
Old 10-11-2005, 04:29 PM
arunkumar_m2001@yahoo.com
Guest
 
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
http://support.microsoft.com/kb/q175804/ - 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

Reply With Quote
  #9  
Old 10-11-2005, 04:29 PM
arunkumar_m2001@yahoo.com
Guest
 
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
http://support.microsoft.com/kb/q175804/ - 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

Reply With Quote
  #10  
Old 10-27-2005, 01:32 PM
gregfocker@earthlink.net
Guest
 
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!

Reply With Quote
Reply


Thread Tools
Display Modes


All times are GMT -5. The time now is 03:50 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.