Article ID: 193886 - Last Review: June 23, 2005 - Revision: 3.2 How to Index Physical Roots
This article was previously published under Q193886 We strongly recommend that all users upgrade to Microsoft Internet Information Services (IIS) version 6.0 running on Microsoft Windows Server 2003. IIS 6.0 significantly increases Web infrastructure security. For more information about IIS security-related topics, visit the following Microsoft Web site: http://www.microsoft.com/technet/security/prodtech/IIS.mspx
(http://www.microsoft.com/technet/security/prodtech/IIS.mspx)
SUMMARY
Using Microsoft Index Server 2.0, you can index physical paths and virtual
paths. This allows you to index data and return UNC pathing or FTP URLs to
access the data.
MORE INFORMATION
You must first add the physical folders to the catalog. To do this,
perform the following steps:
util.AddScopeToQuery Q, "\", "deep" -or- FormScope=\ (if you are using the samples). The results of this query will not have a vpath record, but will have a path record that contains the local path to the data on this computer. However, the path needs to be returned using the alias you entered in step 3. Add the path column to the CiColumn statement in the .idq file, or to the Q.Columns statement in the .asp file. You will not get the alias as a result, because the catalog you are querying is on the same computer as Index Server. By default, Index server will display the local pathing in this case, not the alias. To return the path using the alias created in step 3, point to the catalog using Named Pipes. The statement in an .idq file is as follows:
CiCatalog=query://<machine>/<catalog>
In an .asp file using the IXSSO object, the statement is as follows:
Q.Catalog = "query://<machine>/<catalog>"
In both examples above, <machine> is the name of the server hosting the catalog, and <catalog> is the name of the catalog as it appears in the Index Server snap-in for the MMC. The final step is to modify the results page of the query so that it returns the local path, not the vpath. One drawback of this method is that authentication is limited to Anonymous or Basic authentication. Windows NT Challenge Response will not work with this Named Pipe query. This is a limitation of current Windows NT security.
| Other Resources Other Support Sites
CommunityGet Help NowArticle Translations |





















Back to the top