The information in this article applies to:
SYMPTOMS
The Connect method of the InterchangeManager object may fail when called via an Active Server Page script if Allow Anonymous access is enabled for the ASP page.
CAUSE
By default, the Cipm.mdb database is installed to the \Microsoft Site Server\Data\CIP Manager\ directory and by default, the IUSR anonymous account does not have access to this directory when CIPM is installed on an NTFS partition.
WORKAROUNDTo work around this behavior, you must either disable anonymous access to the virtual directory housing the script, and thereby forcing Windows NT Challenge Response or Basic authentication, or give the IUSR anonymous account at least read access to CIP Manager database file (Cipm.mdb). MORE INFORMATIONIf you access the script below as the IUSR anonymous account when the anonymous account does not have at least read permissions to the CIP Manager database (Cipm.mdb), the script will fail with the following error message: <% Response.Expires = 0 %> <HEAD> <TITLE> Connect to CIP Manager Database </TITLE> </HEAD> <BODY> <% On error resume next Dim cipManager Dim Home Set cipManager = Server.CreateObject("IMCore.InterchangeManager") cipManager.Connect CheckError "Insufficient credentials to read CIP Manager database" Set home = cipManager.home %> <H4> Use this page to view the Home Organization<BR> name listed in the CIP Manager database. </H4> <P> Home Organization is <%=home.name%> </P> <%
%>
Additional query words: CIPM vbscript
Keywords : CommDB_SQL |
Last Reviewed: May 18, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |