FileNET Web Services, Open Client, and IDM Desktop 3.2.0 Release Notes (Updated 9/26/02)

This document describes known issues in the software and associated documentation for Web Services, Open Client and IDM Desktop. Later revisions of this document may also discuss workarounds and/or fixes for some of the listed issues. Updates to this document appear in red text.

Patches for a number of these problems may become available prior to the next release of the product. Likewise, documentation updates may also be made available during the course of the release. For software patches and hotfix packs, see the Download Fixes/Patches link in the Expandable Toolbar on the FileNET Worldwide Support web site. Navigate to hotfixes > IDMdesk-web.html > release number > patch number.

Some hotfix packs may include both software patches and updated documentation files. You can also find general documentation updates, if any, at the same Support web site location where you found these Release Notes (that is, from the Product Info tab, click Panagon > IDM Desktop or Web Services > Release Information).

Known Issues

The following notes describe known issues and critical information for this release. Where applicable, each note includes the associated Failure Report (FR) for reference and tracking purposes.

Known issues are grouped below as follows:

New Functionality for Web Services

A new Web Services XML Server component is now available. The XML Server can be used to access information stored in an Image Services or in a Content Services library. The new FileNET product, Panagon WCM, uses the XML server to publish web pages that contain content that is extracted from Image Services and Content Services libraries.

The XML Server component is available in Web Services 3.2.0 Hot Fix Pack 2.

For more information on the new XML Server capability, refer to the Using Panagon Web Services XML Server technical notice. You can access this technical notice at the same Support web site location where you found these Release Notes (that is, from the Product Info tab, click Panagon > Panagon IDM Desktop or Panagon Web Services > Product Documentation > Panagon IDM Desktop 3.2 or Panagon IDM 3.2 Web Services).

General Restrictions for Web Services, Open Client, and IDM Desktop 3.2 Products

Folder Browsing with Image Services

Poor response times can be caused by browsing libraries with a very large number of folders. If you experience performance issues, consider re-architecting the folder structure or not using folder browsing.

Setting the Cache Directory

Using the Configure Application, you can choose which folder to use for cached files. Always assign a directory that is only to be used for caching files as the cache directory. When you uninstall Web Services or IDM Desktop, the cache directory and its entire content is deleted. (FR 23511)

Date Handling Information

Printing Stamp Annotations

If you are printing stamp annotations to an HP4 or HP5 printer from a Windows 98SE PC, we recommend the printer settings below.

WAL

Web Services and IDM Desktop installation includes WAL 3.5 modules. If you are using IS servers, please ensure you have installed the latest WAL patches on all your IS servers.

Direct Shelf Access

The Windows 98 operating system does not support cross-domain trust relationships. As a result, to use the Direct Shelf Access (DSA) feature from a Windows 98 desktop, your client machine must exist in the same NT Domain as the CS server.

Panagon Application Integration for Web Services and IDM Desktop

Co-location of desktop application integration and thin client application integration on the same machine is not supported. (FR 36294)

Properties

Supplying more decimal places than defined for an IS property generates an error when trying to save the property changes. However, the display is correctly updated by rounding the number to the correct number of decimal places. (FR 17729)

Viewing

If the image of a Microsoft Office document appears to be cut off from the right or does not print in landscape mode when appropriate, right click on the document inside the viewer, then click the Options/Print on the context menu, and check the 'Use Original document Formatting if available' checkbox.

Document Object

ObjectSet Object

Errors and unexpected behaviors can occur if you add objects to collections using the ObjectSets returned from Panagon IDM automation interfaces (for example, Folder.SubFolders). Instead, create an empty ObjectSet in your VB application and add objects to this ObjectSet.

Query using ADO

ADO logs an unknown error when the connection to the database is being made. This error cannot be trapped with an error handler and is simply added to the ADO object's error collection. The error can be seen using Visual Basic's Locals Window at run time.

IDMQuery Control

Advanced searches for CS documents using comparison operators on multivalued custom properties return multiple instances of items.

The following list describes the behavior of some of the IDMQuery controls in Visual Basic's Object Browser:

Creating the AdoCommand Property

The following code worked in IDM Desktop 3.0 and does not work in IDM Desktop 3.2.

‘Create a Stored Search object.

Set oStSrch = oLibrary.CreateObject(idmObjTypeStoredSearch, "")

qname = "QCS_" + CStr(k) + "_" + CStr(maxRet) + "_" + CStr(j)

queryCond = whereClause(k)

oStSrch.ADOCommand.ActiveConnection = connection

oStSrch.ADOCommand.CommandText = "SELECT " + colSpec + " FROM FNDOCUMENT WHERE " + queryCond

oStSrch.ADOCommand.Properties("Maximum Rows") = maxRet

oStSrch.Label = qname

oStSrch.SaveNew idmStoredSearchSaveNewNoUI, CustomApp.Text

To workaround this problem, call SaveNew as shown in the following example:

‘Create a Stored Search object.

Set oStSrch = oLibrary.CreateObject(idmObjTypeStoredSearch, "")

oStSrch.SaveNew idmStoredSearchSaveNewNoUI, CustomApp.Text

qname = "QCS_" + CStr(k) + "_" + CStr(maxRet) + "_" + CStr(j)

queryCond = whereClause(k)

oStSrch.ADOCommand.ActiveConnection = connection

oStSrch.ADOCommand.CommandText = "SELECT " + colSpec + " FROM FNDOCUMENT WHERE " + queryCond

oStSrch.ADOCommand.Properties("Maximum Rows") = maxRet

oStSrch.Label = qname

oStSrch.Save 'Save whatever values has been set to the AdoCommand.

(FR 22755)

Command Objects

When executing the method ShowOptionsDialog, the Options Dialog that appears is always modal regardless of whether the Modal parameter of the method is passed a value of True or False.

Saving a Multiple-Page IS Document Using VBScript

Normally, to save an IS multiple-page document, you create an array, populate it with the page data, then pass the array to the IDM call. However, using an array in VBScript with Web Services can cause unexpected results. The following code snippet shows one way of successfully saving a multiple-page IS document using VBScript (as in the ASP environment):

’Create multiple-page document using VBScript

Set oDoc = oLib.CreateObject (idmObjTypeDocument, "SampleDocType")

FileName01 = "C:\Temp\Anno1.tif"

FileName02 = "C:\Temp\Anno2.tif"

ODoc.SaveNew Array(fileName01, fileName02), idmDocSaveNewKeep

ADO Mishandles Connection Strings

The following line causes ADO to mishandle the connection string:

“Prompt=” & idmLogonOptNoUI & “;”

In this instance, idmLogonOptNoUI translates to zero, which is invalid. When preparing an ADO connection string, use the ADO constants found within ADODB.ConnectPromptEnum, such as adPromptNever, instead of IDM constants.

In addition, ADO parses the connection string and removes items corresponding to properties. This situation is illustrated in the following code:

connStr = “Provider=FnDBProvider;Data Source=” & lib.Name & “;SystemType=” & lib.SystemType & “;”

anADOConn.Open connStr

extPropsStr = anADOConn.Properties("Extended Properties")

Prior to ADO 2.0 the Extended Properties string would have included the “SystemType=...”. Now, ADO removes this portion of the string and it is only available as a property (for instance, anADOConn.Properties(“SystemType”)).

ArchiveEx Method

You can specify an archive disposition when archiving a version using the ArchiveEx method:

Sub ArchiveEx([DispName As String])

Member of IDMObjects.Version

...where DispName is the name of an archive disposition.

Compatibility/Coexistence with Other FileNET Products

The following information provides details on the compatibility between the 3.2.0 release of Web Services, Open Client, and IDM Desktop and other FileNET products.

IS and CS Services

Panagon web clients and IDM Desktop installations are certified for access to the following libraries that have been certified:

IDM Desktop 3.2.0 can be co-located with CS servers and System Administration Tools on the same Windows server.

IDM Desktop 3.2.0 can be co-located with Rendition Services. It is a requirement for the kPublisher release of Rendition Services. (FR 38517; 4/26/02)

Web Services includes its own web client and administrative tools. Do not install IDM Desktop, IS, CS, or any CS server component (such as a remote Storage Manager) on the same machine with Web Services.

Using a Panagon web client on the same server as IS or CS is not supported.

Panagon WorkFlo Services 4.2.2

Web Services 3.2.0 can be be used with eProcess 4.2.2.

For Panagon Open Client Web Server with eProcess Integration, a workflow server running Panagon WorkFlo Services 4.2.2 with Hot Fix Pack 5 or later is required. The WorkFlo Server must be configured for use with Open Client.

For workflow server requirements and installation procedures, see the WorkFlo Services/Windows or WorkFlo Services/UNIX installation handbook. The handbooks are available (in PDF format) on the Panagon eProcess Installation Documentation CD, which accompanies your WorkFlo Services software CD.

Saros Document Manager (SDM)

IDM Desktop can coexist on the same PC as Saros Document Manager (SDM). IDM Desktop does not support the following legacy features: SDM smart folders, document references, and stored searches saved using Mezzanine or the Mezzanine API.

Folders created using SDM 4.2.1 can have names containing forward slash characters. Web Services does not display these folder names correctly. (FR 19610)

Panagon Capture and CS Capture Desktop

Web Services is not compatible with any version of Panagon Capture.

IDM Desktop 3.2.0 is compatible with Capture 3.1.

Before you can install and use CS Capture Desktop, you must first install IDM Desktop on your system. Refer to the Capture documentation for additional details.

PWP Station

Web Services cannot be co-located on the same system as PWP Station.

Panagon Print

IDM Desktop 3.1 can be co-located on the same PC with Panagon Print 4.1 and 4.2. Panagon Print 4.1 and 4.2 have not been qualified with IDM Desktop 3.2. (FR 38285; 4/26/02)

Web Services cannot be co-located on the same PC with Panagon Print 4.1 and 4.2.

Report Manager 4.0 and 4.1

Web Services and IDM Desktop 3.2.0 can be used with Report Manager 4.0 and 4.1. Open Client can be used with Report Manager 4.1. You can colocate the thin and thick clients with a Report Manager desktop. There is no support for colocating the thick or thin client with the Report Manager server.

Before you can display Report Manager documents cross-cataloged to IS libraries, refer to the Report Manager documentation for configuration information.

The IS Library limit for the document property F_Pages is 65535. If the number of pages in a Report Manager document is greater than 65535, the F_Pages property has a value of zero (0).

If you search for a document, view it, and do not close the viewer, a subsequent attempt to search for another document causes your PC to hang. (FR 22946)

Known Problems and Restrictions for Web Services

Installation and Uninstallation

Issues with Running Virus Checking Services

Anonymous Authentication

To use anonymous authentication for access to libraries through Web Services in conjunction with secure sites on the same web server, you must edit the registry as follows:

  1. Run regedit.

  2. Open HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVersion/Internet Settings.

  3. Add the DWORD value "DisableNTMLPreAuth" and set it to 1.

(FR 14496)

Application Integration

Internet Explorer

For correct operation, Web Services requires that the Java Virtual Machine (JVM) is installed on the web client.

Instances where the JVM might not be installed include upgrading from Internet Explorer 3.0 directly to Internet Explorer 5.05. The JVM can be installed from the Internet Explorer Custom Installation screen.

Back Button

The Web Services application makes extensive use of frames, as a result using the Internet Explorer Back button can produce unexpected results.

Color Scheme

The out of the box applications do not use the color scheme configured on your desktop.

Display of Pop-up Windows

Each pop-up window can be minimized and maximized. However, if you maximize a pop-up window, the display of some of the fields and titles might not be altered in proportion with the window.

Checking Out a .JPG Document

When you check out a .JPG document using the sample HTML web pages, the document is opened in the browser. If you then use the browser's Save As option to save the file, the file is saved as an HTML page pointing to the .JPG file, which is by default renamed <file name>_jpg.

Opening Multiple Internet Explorer Windows

If greater than 100 pop-up windows have been opened, your system might run out of resources. To regain the resources, stop and restart Internet Explorer. Microsoft has documented this problem with knowledge base article Q235674, available at http://support.microsoft.com/support/kb/articles/q235674.asp

A patch to Internet Explorer is available from Microsoft by following the directions in the article.

On Windows 98 systems, you can use the Resource Manager to obtain automatic notification when resources are running low. Go to Start->Programs->Accessories->Tools->Resource Manager to turn on the Resource Manager.

Searching

Searches that were created using 2.0.x software and that are stored in a library can be successfully executed using the Web Services ActiveX client application. However, storing these searches on the web server and executing them from the search drop down list is not supported.

To make the searches available on the web server, you must open them using the Find Application and then resave them on the web server.

ASP Timeouts

If you receive an ASP timeout, use the browser's Refresh button. This action resets the web application and enables you to continue working normally.

Opening Documents

Administration for Web Services on IIS Servers

In order to run the Panagon Web suite under Microsoft IIS and Active Server Pages, a set of out-of-process Panagon components must be configured using the administrative NT user account as explained below. If you make changes to this account, such as a password change or account expiration, you must reconfigure the IDM components.

If you do not reconfigure the components after making a change to the NT user account, a Web client might receive the following error message when trying to access the Panagon Web suite:

Server object error 'ASP 0177:80080005'

Server.CreateObject Failed

<Drive>:\INETPUB\WWWROOT\IDMWEB\GLOBAL.ASA, line 122

The call to Server.CreateObject failed. The requested object instance cannot be created.

To reconfigure the Panagon components on a primary domain controller, enter the following from a command window:

FnLogSvr /RegServerDCOM <domain\username> <password>

To reconfigure the Panagon components on a stand-alone server, enter the following from a command window:

FnLogSvr /RegServerDCOM <machinename\username> <password>

Panagon Web Pages and Viewing on the Web Client

Known Problems and Restrictions for Open Client

Extended Characters and Euro Characters

With JRE1.4, Euro characters and some extended characters do not work correctly. You can work around the issue for the Euro character by using the Windows Character map. To workaround the issue for extended characters, press Shift + "{" or Shift +"[" to input the extended characters. (FR 41804)

CS and IS Drop-Down Box Limits

IS and CS drop-down boxes for CVL and EVL property lists currently display a maximum of 1000 values. (FR 40721)

Additional Requirements for Running Virus-Checking Software

To run Open Client 3.2 and McAfee NetShield Anti-Virus Software on Windows 2000 Server, NetShield v4.5 with Service Pack 1 for NT and Windows 2000, or a later version, is required.

If you experience poor response times when using the Open Client, and you have virus-checking software on your web server, update your virus checker setup to prevent it from scanning the directory in which you installed the Open Client software.

Login Status Persists in Multiple Browser Windows

Once you log in to a FileNET library from a Netscape browser, additional Netscape browser windows retain the same login status. For example, if you start Netscape and log in to a FileNET library, then open another browser window, the new window accesses the same library without having to log in again. If you log out from the library from either window, then the same library will also be logged out from the other window as well.

This behavior is unlike that of Internet Explorer, where each browser window has its own login session to the FileNET libraries. From one Internet Explorer window, whatever you do to the FileNET library won’t affect the other existing Internet Explorer window.

Open Client in Visual Studio .NET GA

If you are loading the Open Client project into Visual Studio .NET GA and attempt to recompile the project, you may encounter errors if a virtual directory name other than FnOpenClient is selected during the Open Client installation process. The following are steps that should resolve these errors:

  1. Create a virtual directory named FnOpenClient that points to the Open Client Installation directory.

  2. Locate the Open Client project file (FnOpenClient.vbproj) in the Open Client installation directory and open the file in Visual Studio .NET GA.

  3. Make your changes.

  4. Recompile the project. In rare cases, missing references to IDMObjects and JiGlue may cause the compilation to fail. If this occurs, use the project browser to remove IDMObjects and JiGlue from the project references, manually re-add them, and recompile the application. You can locate IDMObjects and JiGlue in the BIN subdirectory within your Open Client installation.

  5. To debug the application, set the default.aspx page as the initial page.

Registry Settings and NTFS Security Requirements for Open Client

Non-eProcess Registry Settings for OpenClient

OpenClient grants full control access for the aspnet_wp account in the following registries and their subkeys. Note that HLM is used as a short cut for HKEY_LOCAL_MACHINE:

  1. [HLM/SOFTWARE/ODBC]

    This setting is required to support CS content search functionality.

  2. [HLM \SYSTEM\CurrentControlSet\Services\Eventlog]:

    This is required for event logging.

  3. In addition, Open Client creates the following registry keys:

  4. [HLM \SYSTEM\CurrentControlSet\Services\Eventlog\Application]: RestrictGuestAccess=0

    This setting allows OpenClient to log error events.

  5. [HLM \SYSTEM\CurrentControlSet\Services\Eventlog\Application]: InstallDir = C:\Program files\FileNET\IDM\Web\FnOpenClient JavaDir= C:\Program files\javaSoft\JRE\<Version Number>\ Version=04.00.0000.0130

    These key values identify the install and java directory and the OpenClient version.

NTFS settings for OpenClient

The ..\Program Files\FileNET\IDM\FnOpenClient directory and its sub-direories and files should have these following NTFS settings:

Administrators = Full Control

Power Users = Modify|Read|Write|Execute

System = Full Control

Terminal Server User = Modify|Read|Write|Execute

Users = Read|Write|Execute

The ..\Program Files\FileNET\IDM\Shared\DATA_SS directory is the only one that has a slightly different NTFS setting for Open Client:

aspnet_wp account = Full Control

Administrators = Full Control

Power Users = Modify|Read|Write|Execute

System = Full Control

Terminal Server User = Modify|Read|Write|Execute

Users = Read|Write|Execute

Note that this is similar to other OpenClient directories. The only difference is that it has full control for the aspnet_wp account, which is required to support the CS search functionality.

Aspnet_wp account

This account is automatically created by the .NET runtime framework. It belongs to the Users group and assumes all the security settings for that group. By default, all the .NET web applications run under this account. This also applies to Open Client. On the other hand, all the legacy asp web applications run under the IUSR_<machine name> account.

Using Open Client with eProcess

To use Open Client with eProcess you must have an eProcess workflow server available. Open Client can be used with either eProcess 4.2.2 (Hot Fix Pack 5 or later) or eProcess 5.0.0 workflow servers. The FileNET software on the Open Client web server and the eProcess workflow server must be kept in sync. When an eProcess hot fix pack or new release is made available, complete the following steps to bring the Open Client web server up to the same software level.

Notes

For eProcess Hot Fix Packs:

  1. Update the workflow server following the instructions provided in the eProcess Hot Fix Pack Readme.

  2. Stop any routers and eProcess services running on the Open Client Web Server.

  3. Copy the files in the Hot Fix Pack Open Client directory to the matching locations on the Open Client web server.

  4. Reboot the web server.

For eProcess 5.0.0 and later releases

Web WorkFlo 5.0.0 and Open Client can be co-located on the same web server and can use the same eProcess 5.0 workflow server.

For details on how to install or upgrade an Open Client environment for use with eProcess 5.0.0, refer to the eProcess 5.0.0 readme on the eProcess 5.0.0 Web WorkFlo CD. One restriction on the Open Client and eProcess 5.0 environment is that custom Web WorkFlo launch and step processors cannot be processed using the Open Client Personal Work Manager. This restriction will be removed with the release of Open Client, Hot Fix Patch 1. (9/26/02)

To update an Open Client web server with the latest Web WorkFlo release

  1. Stop any routers and eProcess services running on the Open Client Web Server.

  2. Install Web WorkFlo.

  3. Ensure all routers and eProcess services are still stopped.

  4. Copy the pw.jar file from the ...\IDM\Web\IDMWS\Redist\WF_Extras\pw.jar directory to the ...\IDM\Web\FNOpenClient\eprocess\DownLoad directory.

  5. Verify that the routers previously configured are still available, if not reconfigure them.

  6. Restart the eProcess services and any routers.

To update Web WorkFlo 5.0.0 or later web server with the latest Open Client release

  1. Stop any routers and eProcess services running on the Web Workflo web server.

  2. Install Open Client using the Complete option.

  3. Ensure all routers and eProcess services are still stopped.

  4. Copy the pw.jar file from the ...\IDM\Web\IDMWS\Redist\WF_Extras\pw.jar directory to the ...\IDM\Web\FNOpenClient\eprocess\DownLoad directory.

  5. Verify that the routers previously configured are still available, if not reconfigure them.

  6. Restart the eProcess services and any routers.

Uninstalling Open Client or Web WorkFlo

If Open Client and Web WorkFlo are co-located, uninstalling one package will prevent the other package from functioning correctly. To work around this issue, use the following procedures when uninstalling:

Removing Web WorkFlo

  1. Use Add/Remove Programs in the Control Panel to uninstall Web WorkFlo.

  2. Use Add/Remove Programs in the Control Panel to repair the Open Client installation.

  3. Verify that your routers are still configured, if they are not reconfigure them.

Removing Open Client

  1. Make backup copies of the following files and directories:

  2. Stop all routers and eProcess services.

  3. Uninstall Open Client.

  4. Re-run the Web WorkFlo installer.

  5. Reinstall the files from the backup copies you made in step 1.

  6. Restart the eProcess services.

  7. Reconfigure the routers.

Known Problems and Restrictions for Open Client eProcess Integration

JRE Download Issues and Requirements

In an Open Client with eProcess system, we recommend confirming the JRE version installed on a web client prior to accessing the eProcess applets from that client (go to Start\Settings\Control Panel\Java Plug-In to see the version). Open Client with eProcess requires either JRE 1.3.1 or 1.4.0; accessing the applets with any other JRE version is not supported, nor is having multiple JRE versions installed on a web client. Depending on the installed JRE version, take the appropriate actions:

Before uninstalling an existing (non-1.3.1 or 1.4.0) JRE or choosing between 1.3.1 and 1.4.0 consider the following:

(FR 41896)

Public Work Queue

Viewing a public work queue that contains a large number of work items fails with a server timeout. For example, a returned page may say "Server Application Unavailable." This server timeout occurs when the public work queue holds 24,000 items. (FR 41021)

Workflow Server Issues

When you are setting up a new workflow server, the first step is to initialize a region. To complete this step, click on the Configuration Console link on the Tools page. If you try to use the Log in to workflow server link prior to initializing the region, the login fails. (FR 40557)

Workflow Definition Issues

HTML Launch and Step Processors

Java Launch and Step Processors

You cannot open folders which have extended characters in their names. (FR 41628)

If you are using JRE 1.4.0, you receive a warning message when you assign UNC attachments to Java step processors in Netscape. (FR 41977)

LDAP Session Information

If you log in directly to an eProcess Java applet using LDAP credentials, you may also be prompted to log in to IS and CS libraries. To avoid this problem, do one of the following before accessing an eProcess Java applet:

(FR 41120)

Macintosh Platform

Documentation

In a co-located environment (Open Client and Web WorkFlo 5.0.0 installed on the same web server), you might receive "Page Not Found" errors when trying to access help through Open Client. As a workaround, access the help through the idmws pages (ActiveX Client) instead. (FR 41876)

Known Problems and Restrictions for IDM Desktop

Installation and Uninstallation

Folder Security

After modifying the properties of a CS folder, the security access assigned to the folder reverts back to the following default settings: Admin:Owner and General Users:Viewer. (FR 36781)

Custom Applications

Using Document.SaveNew in a multithreaded application sometimes fails because the LocalDB was not intended for use with multithreaded applications. (FR 36809)

Integer String Property Type (SVCP) Boundaries

For an Integer String property type, the maximum value is 2147483647. This is a limitation of OLE. Entering a value greater than the maximum value results in an invalid data type error. (FR 35645)

IDM Desktop Maintenance Application

Using the IDM Desktop Maintenance Application to remove connectivity to CS libraries does not work correctly and future access to CS libraries is not removed. (FR 36695)

Windows 2000 and Windows XP

On Windows 2000 and Windows XP systems, restricted users cannot view documents such as .pdf, .doc and .xls which require access to the registry. (FR 28349)

Windows 98SE

On Windows 98SE, an Explorer view doesn't always refresh correctly unless Internet Explorer 4.01 or higher is installed.

FileNET Neighborhood (Explorer Integration)

Using Windows XP, the plus (+) and minus (-) signs in a FileNET Neighborhood tree view disappear when a library is highlighted. Refer to the Microsoft Knowledge Base Article Q315976 for more information. (FR 36028)

Searching

Application Integration

PowerPoint 2000/XP Integration

If you are using an IS-only installation, prior to selecting FileNET Add, use the native PowerPoint Save As functionality to name the document. Selecting FileNET Add on a new, unsaved document causes PowerPoint to crash. (FR 23637)

Outlook Integration

Lotus Notes Integration

Drag and Drop, Cut, Copy and Paste

Compound Documents

ListView

Documents in the IDMListView's Report View layout do not always display the desired properties.

If you add the documents to the IDMListView layout window while the IDMListView.View property is set to any of the options (such as, idmViewIcon, idmViewSmallIcon and idmViewList) other than idmViewReport, the requested properties of the newly added documents do not display even if you later change the IDMListView.View property to idmViewReport.

To have the properties of the existing documents displayed under the proper column headers, you must restore the PropertyDescriptions objects and so on. (FR18497)

Local Printing

Logging

It is possible to configure logging such that several thousand messages are generated. When this occurs, the environment may appear as though it has stopped responding. The environment will eventually respond. This situation can be avoided by selectively enabling the logging options.

Viewing

Unified Log On

Unified logon is not compatible with the Windows NT Scheduler service, which performs scheduled tasks. The scheduler logs on to the desktop as a specific user. Before the scheduler logs on, unified logon works as expected. After the scheduler runs, the incorrect user is logged onto FileNET libraries. (FR 17940)

Publishing

The owner of a document cannot publish the document if another user has administrator rights to the same document. (FR 23604)

Replication

After adding a custom property to a document class on the source library, users cannot log into the target libraries until after two replication cycles. During the first replication cycle, the source library is accessible but the target libraries are not. All libraries are inaccessible during the second replication cycle.

Known Problems and Restrictions for Documentation

Web Services Client Help

The Download Web Client Components topic incorrectly states that the file name for the Panagon Microsoft Application Integration setup option is fncontrols.exe. The correct file name is PanagonAppInt.exe. (FR 43001; 9/26/02)

Panagon Web Administrator's Help

IDM Desktop Administrator's Help

Please note the following correction to the FileNET library requirements topic in the Requirements book (Help for Administrators > Requirements):

In the IDM Image Services Software Requirements section, replace the existing text with the following: IDM Desktop is certified to run with IDM Image Services (IS) version 3.5 or later.

(FR 37736; 3/22/02)