Skip Headers

Oracle Internet File System Release Notes
Release 9.0.2.1.0 for Microsoft Windows 2000/NT

Part Number A97398-01

Oracle® Internet File System

Release Notes

Release 9.0.2.1.0 for Microsoft Windows NT/2000

May 2002

Part No. A97398-01

Overview

This document is accurate to the best of our knowledge at the time of publication. Information that is discovered subsequent to publication will be available through regular support channels. You can access the latest information and additions to Release Notes on the Oracle Technology Network at:

http://otn.oracle.com/products/ifs/content.html

This document is specific to Oracle Internet File System Release 9.0.2.1.0 (Oracle 9iFS) for Microsoft Windows NT/2000. It includes information about:

Changes and New Features

This release provides several new features, including integration with Oracle9i Application Server, which includes support for Oracle Internet Directory and Oracle9iAS Containers for J2EE (OC4J). This release also supports AppleTalk Filing Protocol (AFP), enabling Macintosh users to connect to Oracle 9iFS just as they do to an AppleShare file server. See "Integration with Oracle9i Application Server" and "AppleTalk Filing Protocol (AFP) Support" for details.

Integration with Oracle9i Application Server

Oracle 9iFS is integrated with Oracle9i Application Server and is especially designed to integrate with Oracle Internet Directory and Oracle Enterprise Manager, specifically with the new Oracle Enterprise Manager Web site that enables Web-browser-based monitoring and administration.

Support for Oracle Internet Directory (LDAP Support)

Oracle Internet Directory is Oracle's LDAP (Lightweight Directory Access Protocol) v.3-compliant directory service implementation. Oracle Internet Directory can provide user authentication and other directory-service features to Oracle9i Application Server components, and to Oracle 9iFS. If you use Oracle Internet Directory with Oracle 9iFS, user management will be a very different process than in previous releases. Both system administrators and Oracle 9iFS may have to take different initial steps before using Oracle 9iFS.

For example, system administrators will need to create an Oracle Internet Directory Credential Manager (OidCredentialManager) if they want the Oracle 9iFS instance to authenticate Oracle 9iFS users. See the Oracle Internet File System Installation and Configuration Guide for information about configuring an Oracle Internet Directory credential manager.

Note that existing Oracle 9iFS user accounts can be migrated to Oracle Internet Directory by using the Migration Tool provided with Oracle 9iFS. See Appendix B of the Oracle Internet File System Installation and Configuration Guide for additional information.

See "Running Oracle Internet Directory Replication Server to Purge Oracle Internet Directory Change Log" for additional information specific to this release of Oracle 9iFS and integration with Oracle Internet Directory.

Support for Oracle9iAS Containers for J2EE (OC4J)

Oracle9i Application Server provides a J2EE-compliant application server with support for JavaServer Pages (JSP), Java Servlet, Enterprise JavaBeans, and many other APIs from the Java 2 Platform, Enterprise Edition (J2EE). Support for these APIs is provided in Oracle9i Application Server by the Oracle9iAS Containers for J2EE (OC4J) component.

OC4J replaces Apache JServ as the Java Servlet and Java Server Page runtime environment for Oracle 9iFS; Oracle 9iFS uses OC4J to support its servlets, specifically, the HTTP/DAV Servlet and the portlet servlet.

After installing and configuring Oracle 9iFS, you must deploy these servlets to OC4J using a command-line utility provided with Oracle 9iFS. See the Oracle Internet File System Installation and Configuration Guide, Chapter 4, for information about deploying Oracle 9iFS servlets to OC4J.

OC4J is also used to support the new Web-based Oracle Enterprise Manager software (sometimes referred to as Enterprise Management Daemon, or EMD). See "Web-based Management" for more information.

Web-based Management

You can now use a browser to connect to all the nodes that comprise the Oracle 9iFS domain, on a host-by-host basis, using the EMD (Enterprise Management Daemon), a new component of Oracle9i Application Server. The software infrastructure that supports Web-based management (specifically, the Oracle9iAS Containers for J2EE (OC4J) component of Oracle9i Application Server) is configured for Oracle 9iFS automatically at the end of the Oracle 9iFS configuration process.

See Oracle9i Application Server Concepts for information about Oracle9iAS Containers for J2EE and the role it plays in Oracle9i Application Server. See the Oracle9i Application Server Administrator's Guide for information about administering, managing, and monitoring Oracle9i Application Server.

AppleTalk Filing Protocol (AFP) Support

Oracle 9iFS includes an AFP 2.2-compliant AppleTalk Filing Protocol (AFP) server. MacOS 9.2 and MacOS X clients can use this AFP Server just as if it were an AppleShare server. See the Oracle Internet File System Setup and Administration Guide for additional information about the new AFP protocol server support, including information about configuration parameters.

Long Filenames Truncated in AFP 2.2

Because AFP 2.2 does not support filenames with more than 31 characters, the Oracle 9iFS AFP Server will truncate long filenames. However, the AFP Server generates a unique name by appending a number at the end of the filename, as is standard practice with this protocol.

Certification and System Requirements

Several high priority bugs are fixed in the 9.0.1.3 release of Oracle9i Database Server. You should upgrade to this release of the database as soon as it is available.

Oracle Internet File System Release 9.0.2.1.0 is also certified to use the 9.2.0.1.0 release of Oracle9i Database Server.

Client Certifications

The following client software has been tested and certified for Oracle 9iFS:

Microsoft Windows

Apple Macintosh

Commandline Utility Client

UNIX NFS Client Support

Deprecations and Changes in the Oracle 9iFS Java API

As the Oracle 9iFS Java API grows to take advantage of new features and technology, certain classes, attributes, and methods may be deprecated. You should expect these deprecated elements to be deleted in the following major release. This provides you with a full release cycle to modify your applications to use the supported classes, attributes, and methods.

To see what is deprecated in this release, go to the "Deprecated" link in the Javadoc. Each deprecation has a comment indicating the equivalent supported usage. You can also check if your application is using any deprecated classes, fields, or methods by compiling your Java application with the -deprecation flag.

Collections Improvements

In this release, the Oracle 9iFS implementation of java.util.Collections is changed to improve scalability. Notable changes include the following:

The methods of the new Collection interface have the same signatures as the methods of the old Collection class.

New implementation classes.

The following classes implement Collection:

oracle.ifs.common.Collection (interface)
|
+---oracle.ifs.common.CachedCollection (abstract)
| |
| +--- oracle.ifs.common.CachedSelectorCollection
| |
| +--- oracle.ifs.common.CachedResolverCollection
|
+---oracle.ifs.common.UncachedResolverCollection

The declared return values of the get*Collection() methods of LibrarySession and S_LibrarySession are changed to reflect the appropriate Collection subclass.

Changed error codes.

The error codes of the methods in Collection are also modified. If the specified name is invalid, the exception stack thrown by Collection.getItems(String) is as follows:

iFS 9.0.2:
IFS-12200 ("Invalid item name specified")
IFS-12214 ("Unable to get item in collection by name")
IFS-12200 ("Invalid item name specified")
Using Collection classes differently.

For an example of this modification to the error codes in Collections, consider a test of an error code such as this:

if (e.getErrorCode() == 12200)

For this release, it should be changed as follows:

if (e.containsErrorCode(12200))

In general, it is better to use containsErrorCode() if you are expecting a specific error. In this manner, you code is protected if the error code, in a future release, ever changes its position in the exception stack. For more information about these classes, see the Javadoc.

Change in Delimiters for Service Configuration Properties

For better readability, Oracle 9iFS now accepts spaces in service config properties. For example, a property value can have the following value:

IFS.SERVICE.CREDENTIALMANAGER.Oid.Subscribers = DEFAULT SUBSCRIBER

Before this release, spaces were used to separate alternate values of a property. In this release, commas alone function as delimiters. If an existing property uses a space as a delimiter, you will need to change it to a comma.

interMedia Methods

The following methods now return an object, rather than an intrinsic value (int, long, or double). This change was made to support returning NULL if no attribute value was present. If you have used any of these methods in your custom applications, you must now modify your code to accept the correct return value.

interMediaAudio

interMediaAudioCDTrack

interMediaImage

interMediaSource

interMediaVideo

Configuration Issues

Here are some issues to be aware of before you attempt to install and configure Oracle 9iFS.

Oracle Internet Directory and Oracle 9iFS Issues

Before you attempt to install and configure this release of Oracle 9iFS, be sure to upgrade the database instance supporting Oracle Internet Directory to release 9.0.1.3.

IfsDefault.properties Issues

Some additional manual steps are required to enable launching Oracle 9iFS Manager, Dashboard, and Credential Manager Configuration Assistant from the command line (ifsmgr, ifsdashboard, and ifsoidcm) on middle-tier machines. Briefly, if you configure an additional middle-tier node to an existing domain (by choosing the "Reuse existing schema" from the Oracle 9iFS Configuration Assistant) and you are using Oracle Internet Directory for credential management, you must run Credential Manager Configuration Assistant first, on the middle-tiers, before using Oracle 9iFS Manager and Dashboard. Running the Credential Manager Configuration Assistant synchronizes the IfsDefault.properties file with the existing credential managers (OidCredentialManagers) associated with the instance of Oracle 9iFS. Be sure to select the correct schema name when you run the Credential Manager Configuration Assistant.

The Admin-only configuration of Oracle 9iFS requires manual modifications to the IfsDefault.properties file to support the command-line versions of ifsmgr, ifsdashboard, and ifsoidcm. See item 2320292 in the "Configuration Bugs" section for more information; also see the "Administration-only Configuration" instructions in Appendix B of the Oracle Internet File System Installation and Configuration Guide.

Oracle9i Application Server, Unified Messaging Install Type

If you use the Oracle9i Application Server, D. Unified Messaging install type with Oracle 9iFS, you should be aware of possible port conflicts for SMTP and IMAP servers.

Oracle9i Application Server, D. Unified Messaging provides both IMAP and SMTP servers. Oracle 9iFS also provides an IMAP server, and, through integration with Sendmail, provides mail transfer through an SMTP server.

If you want to use both the Oracle 9iFS IMAP and Oracle9iAS Unified Messaging IMAP servers on the same machine, you must change the port number on one of these servers, because by default, both of them use port 143. You can change the Oracle 9iFS IMAP server to a different port number during configuration. You can change the Oracle9iAS Unified Messaging IMAP server port through the Oracle9iAS Unified Messaging Email Server administration tool. Be aware that if you change the port number on either of these IMAP servers, the IMAP client application that you intend to use must be able to be configured for the specific port number you selected. If your IMAP client cannot be configured to this extent, you must install the Oracle9iAS Unified Messaging IMAP server and the Oracle 9iFS IMAP server on two different middle-tier machines, to avoid this port conflict.

By default, both the Sendmail component used by Oracle 9iFS and the Oracle9iAS Unified Messaging SMTP servers use port 25. You cannot modify this port number on the Oracle 9iFS, so you cannot run both Oracle9i Application Server SMTP server and Oracle 9iFS with Sendmail on the same middle-tier machine.

Sendmail for Windows

Please install Sendmail 3.0 for Windows NT or Sendmail 3.0.2 for Windows 2000 before installing and configuring Oracle 9iFS if you wish to use the Oracle 9iFS email components.

General Issues

Here are some general operations and administration issues.

Oracle 9iFS 'analyze.sql' Script Should be Run Frequently

Oracle 9iFS uses Oracle's Cost-Based Optimizer (CBO) to determine the most efficient way to execute SQL statements. For CBO to work properly, the Oracle 9iFS 'analyze.sql' script should be run as part of regular Oracle 9iFS operations, especially after large volume changes to the data, such as after users have loaded a large number of files into Oracle 9iFS.

Run the script during non-busy periods to avoid impeding performance for users.

Oracle strongly recommends that you export schema statistics before running analyze.sql, as follows:

cd %ORACLE_HOME%\9ifs\admin\sql
sqlplus ifssys/<password>
SQL> call dbms_stats.create_stat_table 
    ('ifssys', 'my_stat_backup_table', null);
SQL> call dbms_stats.export_schema_stats
         ('ifssys', 'my_stat_backup_table',
         to_char(sysdate,'DD-MON-YY HH24:MI.SS'),'ifssys');
SQL> @analyze.sql ifssys

Note that the script may take some time to complete, especially when there are a large number of documents in Oracle 9iFS. For more information about the Cost-Based Optimizer, see the Oracle Performance Guide.

If for any reason you need to restore the old statistics, you can do so by executing the following statements:

SQL> select stat_id from my_stat_backup_table;
SQL> call dbms_stats.import_schema_stats 
       ('ifssys', 'my_stat_backup_table', <name of stat id>,'ifssys'); 

Oracle 9iFS User Names Cannot Contain Multi-byte Characters

Although Oracle 9iFS supports multi-byte character sets, it does not effectively support user account names created using multi-byte characters. When you create user accounts for Oracle 9iFS, you should create the names using single-byte characters only. Users whose account names are created with multi-byte characters are unable to access content through many of the Oracle 9iFS protocol servers.

Oracle Internet Directory Issues

See the Oracle Internet Directory Release Notes for complete information on all known issues. This section covers only those issues specific to Oracle 9iFS.

Use Oracle 9iFS-specific Passwords with Certain Protocol Servers

Many protocols, including AFP, CUP, FTP, and IMAP, transmit unencrypted passwords over the network. Other protocols, such as HTTP, also transmit user passwords in the clear (unencrypted, as cleartext) in some configurations.

From a security standpoint, transmitting unencrypted passwords becomes a concern when Oracle 9iFS uses Oracle Internet Directory to manage user passwords because the same password that provides access to Oracle 9iFS also provides access to all other applications using Oracle Internet Directory for authentication.

To address this issue, Oracle Internet Directory supports an alternate, application-specific password for each user. Oracle 9iFS supports this feature of Oracle Internet Directory. The alternate password for Oracle 9iFS is referred to as the "Oracle 9iFS-specific password." Thus, each Oracle 9iFS user can have two passwords: an Oracle Internet Directory common password, and an Oracle 9iFS-specific password.

You can configure Oracle 9iFS to use the Oracle Internet Directory common password or to use the Oracle 9iFS-specific password on a protocol-by-protocol basis. By default, AFP, CUP, FTP, and IMAP use the Oracle 9iFS-specific password; all other protocols use the Oracle Internet Directory common password. Consequently, users cannot access Oracle 9iFS using AFP, CUP, FTP, or IMAP protocols until they have set their Oracle 9iFS-specific password, using either Oracle 9iFS Manager or the Oracle 9iFS Web user interface.

The default configuration may not be appropriate for all Oracle 9iFS deployments. You can change the configuration using the Oracle 9iFS Credential Manager Configuration Assistant. See Appendix B in the Oracle Internet File System Installation and Configuration Guide for additional information.

Using the Oracle Internet Directory User Migration Tool

When the Oracle Internet Directory User Migration Tool migrates users from the Oracle 9iFS Credential Manager to the Oracle Internet Directory Credential Manager, it does not remove the migrated users' information from the Oracle 9iFS Credential Manager. If a migrated user is subsequently deleted and a new user with the same distinguished name is then created using the Oracle 9iFS Credential Manager, the following exception is thrown:

 IFS-10154: Unable to create user (username) 
 IFS-10172: Distinguished name not unique 

To workaround this, the Oracle 9iFS administrator must explicitly delete the Oracle 9iFS Credential Manager information for the deleted user by calling the DYNCredentialManagerDeleteUser method of oracle.ifs.server.S_LibrarySession.

Running Oracle Internet Directory Replication Server to Purge Oracle Internet Directory Change Log

Oracle 9iFS relies on the Provisioning Integration Service provided by the Directory Integration Platform to be notified of user and group changes in Oracle Internet Directory. These changes are stored in the Oracle Internet Directory change log and are appropriately filtered by the Provisioning Integration Service before being delivered as change events to this application. Even if you are not deploying the Oracle Internet Directory server in replication mode, make sure that the directory administrator starts up the replication server in order to periodically purge unnecessary change-log entries.

This can be done by starting the following NT/W2K service:

Oracle<O-H>Internet Directory_<SID>

Without this periodic cleanup, the Oracle Internet Directory change-log can potentially grow to occupy the entire file system, which may cause unavailability of the Oracle Internet Directory service. The need to start the replication server to purge the change-log is only a temporary restriction and will be removed in a future release.

For more information on starting and stopping the replication server, see Oracle Internet Directory Administrator's Guide.

Oracle Text Issues

Here are some issues relevant to Oracle Text and Oracle 9iFS. See the Oracle Internet File System Setup and Administration Guide, Appendix E, for more information about using Oracle Text with Oracle 9iFS.

Monitoring Oracle Text Indexing of Oracle 9iFS Documents

Administrators can see which documents generated errors during Oracle Text indexing by examining the example:
%ORACLE_HOME%\9ifs\admin\sql\ViewContextErrors.sql.

To monitor each document as it is indexed by Oracle Text, use the procedure ctx_output.add_event()prior to synchronizing the Oracle Text index. See the example:
%ORACLE_HOME%\9ifs\admin\sql\SyncContextIndex.sql.

For an example of viewing more information about the documents after Oracle Text indexing, see:
%ORACLE_HOME%\9ifs\admin\sql\ViewDocumentByRowID.sql.

New Search Timeout Parameter

A new service configuration parameter has been introduced that indicates the default timeout period for any executing search that has not yet returned results. In the default service configurations, this parameter (IFS.SERVICE.SESSION.DefaultSearchTimeoutPeriod) has the value of 60 seconds.

Change the IFS.SERVICE.SESSION.DefaultSearchTimeoutPeriod parameter to select a different default timeout period. See the Oracle Internet File System Setup and Administration Guide for more information.

Client-specific Issues

Here are some issues that you should be aware of before using Oracle 9iFS.

Oracle 9iFS FileSync Utility Issues

The FileSync utility is able to detect changes made by you on your local machine and by you or others on Oracle 9iFS and, generally, is able to resolve any conflict in these changes. However, certain types of changes may conflict and cannot currently be resolved by FileSync. In these cases, FileSync only gives you the option to "skip" synchronizing these file changes.

The following types of conflicts are currently not resolvable ("source" means the original file; "target" means the resulting file):

Web UI Issues

Here are some general Web UI issues.

Uploading via Drag-and-Drop Function in Multi-byte Locales

Due to a bug with Internet Explorer running in multi-byte environments, attempting to upload using the drag-and-drop function works only when the default character set for the Oracle 9iFS server matches the character set of the client machines.

Web Proxies for FTP Drag-and-Drop Function

Users may need to edit their web browser preferences so that they do not use a proxy for FTP. Using a web proxy may cause problems when using the drag-and-drop function in the Web interface to upload files to the server.

Documentation Issues

In Chapter 12, Web Interface Customization, of the Oracle Internet File System Developer Reference, the Servlet should be deployed to OC4J, not JServ. References to JServ should be replaced with references to OC4J.

In Chapter 5 and Chapter 10 of the Oracle Internet File System Setup and Administration Guide, replace references to JServ with OC4J.

Starting and Stopping the Oracle 9iFS Domains and Nodes from the Commandline

You can also start and stop domains and nodes from the Commandline.

Start the Domains and Nodes from the Commandline

On the machine where you want to run the Domain Controller:

  1. Launch the Domain Controller using the ifslaunchdc.bat script, located in %ORACLE_HOME%\9ifs\bin. You must be a user with Administrator privileges to run this script.

  2. On the machines that you want to run the node, launch the node using the ifslaunchnode.bat script located in %ORACLE_HOME%\9ifs\bin. You must be a user with Administrator privileges to run this script.

  3. Start the Domain Controller using the ifsstartdomain.bat script located in %ORACLE_HOME%\9ifs\bin. You should run this as the same user that ran ifslaunchdc.bat.

See Chapter 2, "Administering an Oracle 9iFS Domain" in the Oracle 9iFS Setup and Administration Guide, for more information.

Stop the Oracle 9iFS Domain from the Commandline

Run the ifsstopdomain.bat script located in %ORACLE_HOME%\9ifs\bin. You should run this as the same user who ran ifsstartdomain.bat.

Known Bugs

The following bugs are known to exist in this Oracle 9iFS release. Workarounds are given when appropriate. The known bugs are grouped by process or component:

Configuration Bugs

Bugs 2282201, 2100615 Oracle 9iFS configuration may fail when attempting to configure an SSL-enabled Oracle Internet Directory for credential management.

    Description:

This is an intermittent bug that occurs only when attempting to configure Oracle 9iFS with an SSL-enabled Oracle Internet Directory for credential management.

    Action:

Upgrade the database instance supporting the Oracle Internet Directory to release 9.0.1.3 as soon as it becomes available. As a temporary workaround, in a non-production environment only, you can disable SSL (secure sockets layer) on the Oracle Internet Directory. This is a security violation.

Bugs 2212389, 2287968 Ifsconfig Fails with InvalidAttributeValueException or with an ORA-600 error.

    Description:

Occasionally, when configuring an Oracle Internet Directory (via the Oracle 9iFS Configuration Assistant), the Oracle 9iFS Configuration Assistant fails with an invalid attribute value exception.

    Action:

Set the optim_peak_user_binds=FALSE in the init<db>.ora file (or the SPFILE) and restart the database server where Oracle Internet Directory is running.

Note that this bug will be fixed by upgrading the Oracle Internet Directory database to 9.0.1.3. Once you upgrade, remove this workaround from the init<db>.ora file.

Bug 2329188 Oracle 9iFS must be installed and configured in an Oracle9iAS Oracle home that has the active Enterprise Manager Web site running (EMD).

    Description:

If the host has more than one Oracle home based on Oracle9iAS Release 2, you must install and configure Oracle 9iFS in the Oracle home that is running the Enterprise Manager Web site, or you won't be able to manage the Oracle 9iFS instance.

    Action:

Ensure that Oracle 9iFS is installed and configured in the Oracle home that contains the active Enterprise Manager Web site instance and that Oracle 9iFS was configured from that Oracle home.

Bug 2395114 9iFS with EMD links for DC and node are missing.

    Description:

EMD links may not work after the iFS Configuration Assistant has been run. The problem is intermittent, and happens when the iFS CA is run automatically from the installer with Enterprise Manager running. The problem is present if the links for the Node and Domain do not take you to the Node and Domain pages (this is caused by permissions in the update of one of the Enterprise Manager configuration files).

    Action:

Correct the problem by running the following command after stopping EM:

java -jar <oracle_home>\jlib\
emConfigInstall.jar console <oracle_home>\9ifs\admin\emd\console2add.xml

Restart EM after the above operation.

Alternatively, rerun the iFS CA after stopping EM and restart EM after completion of the configuration.

Bug 2358698 ifssetup reports Access Denied.

    Description:

One of the last steps of the iFS Configuration process involves running a script called ifssetup. This section of the configuration may report an access denied exception due to certain permission violations.

    Action:

Click ok on the error dialog that pops up, then run the following commands (which are in %ORACLE_HOME%/9ifs/bin) from the command line:

1. ifssetup
2. ifsiasetup

Then run the analyze.sql script, as mentioned earlier in the General Issues section on page .

Bug 2320292 Admin-mode only Oracle 9iFS configuration requires manual changes to IfsDefault.properties file before running Oracle 9iFS Manager, Dashboard, and Credential Manager Configuration Assistant.

    Description:

The Admin-mode only configuration of Oracle 9iFS requires manual modifications to the IfsDefault.properties file to support the command-line versions of ifsmgr.bat, ifsdashboard.bat, and ifsoidcm.bat.

    Action:

Using a text processor, open the IfsDefault.properties file, located in the %ORACLE_HOME%\9ifs\settings\oracle\ifs\server\properties directory and set the Oracle 9iFS schema name and service name in the file in these two lines:

IFS.SERVICE.JDBC.Schema=<SCHEMANAME>
IFS.SERVICE.JDBC.DatabaseURL=jdbc:oracle:oci8:@
<NETSERVICENAME>

where <schemaname> is the name of the Oracle 9iFS schema (ifssys is the default) and <netservicename> is the name of the Oracle database service on the database machine. See the "Administration-only Configuration" instructions in Appendix B of the Oracle Internet File System Installation and Configuration Guide for more information.

In addition, if you are using Oracle Internet Directory for credential management, you must synchronize the entries in the IfsDefault.properties file on this machine with the settings in the schema by running the Credential Manager. See Bug 2320341 for additional information.

Bug 2320341 Cannot authenticate successfully through Oracle 9iFS Manager and Dashboard from a middle-tier machine (using Oracle Internet Directory for credential management).

    Description:

If you add a node to an existing domain (and so you use the "Reuse existing schema" option during Oracle 9iFS configuration), you must synchronize the settings in the IfsDefault.properties file with the entries in the Oracle 9iFS schema. If you don't, you will receive authentication errors when you attempt to login to ifsmgr or ifsdashboard from this machine.

    Action:

Run the Oracle 9iFS Credential Manager Configuration Assistant (ifsoidcm.bat) on the middle-tier machine, entering the name of the Oracle 9iFS schema to which this node belongs. The IfsDefault.properties file will be updated with the correct information, and you can then use ifsmgr.bat or ifsdashboard.bat.

Bug 1865469 Oracle 9iFS domain information not discovered by Intelligent Agent.

    Description:

When you deinstall Oracle 9iFS software and then reinstall it in the same Oracle home using the same Oracle 9iFS schema, the Intelligent Agent will be unable to discover the Oracle 9iFS domain controller and node that existed in the schema previously.

    Action:

Before deinstalling, make a backup copy of %ORACLE_HOME%\network\agent\config\ifs.ora. After reinstalling the Oracle 9iFS software, run the Oracle 9iFS Configuration Assistant, and choose to re-use the same schema. Then restore the backup copy of ifs.ora so that the Intelligent Agent will be able to discover the Oracle 9iFS domain controller and nodes.

Bug 1860278 Oracle 9iFS Configuration Assistant may hang on "Verifying Oracle JServer".

    Description:

Under unusual circumstances, the Oracle 9iFS Configuration Assistant may hang during the "Verifying Oracle JServer" step.

    Action:

If the step does not complete within two minutes, kill the process and re-start the Oracle 9iFS Configuration Assistant.

Bug 1529995 Custom policies that are placed in renderer's value domains are lost during upgrade.

    Description:

When performing an upgrade from Oracle Internet File System release 1.1.x to Oracle 9iFS, the value domain used by Oracle 9iFS Manager to manage renderer policies is removed and recreated to accommodate new renderer policies added for WebDAV and e-mail. This does not affect any of the out-of-the-box renderer policies. However, any custom renderer policies created and added to this value domain will be lost. Note that the policy is not removed; rather, Oracle 9iFS Manager cannot see the policies.

    Action:

Note the custom renderer policies added into the value domain. After you install Oracle 9iFS, add these entries back into the value domain, through, for example, the Oracle 9iFS Manager.

Administration Bugs

Bug 2338372 Japanese Help does not show in Oracle Enterprise Manager Web page.

    Description:

In the Japanese environment, Oracle 9iFS Help does not show in Oracle Enterprise Manager (Web-based).

    Action:

Follow these steps:

  1. Follow the steps in the Oracle9i Application Server Release Notes Addendum (9.0.2; Part No A90337-01) to work around Bug 2333168 or 2326951.

  2. Restart the Oracle Enterprise Manager Web site.

Bug 2183550 Chipped characters in Dashboard display (Japanese locale only).

    Description:

Japanese Locale only. The opening display of the Dashboard (the page that displays launch progress), the final characters in the first string don't display correctly; they appear to be chipped.

    Action:

None.

Bug 2181034 Nodes don't display when sysadmin password fails to authenticate.

    Description:

Nodes don't display in the nodes table if the system administrator password in targets.xml file is not correct.

    Action:

Edit the targets.xml file using the Oracle Enterprise Manager administration web page:

  1. Connect to http://<hostname>:1810/emd/console/admin. Enter the ias_admin and password when prompted.

  2. Select the Oracle 9iFS domain controller from the Agents Monitored table, and then click Next to display the Edit Target: Properties page.

  3. Edit the Oracle 9iFS system administrator password, and then click Finish to save the change.

  4. Restart the Oracle Enterprise Manager daemon by executing emctl start at a command script.

See the Oracle Internet File System Setup and Administration Guide for more information.

Bug 1753455 Changes to server not reflected until servers unloaded and reloaded.

    Description:

When you use Oracle 9iFS Manager to make a change in the protocol or server configuration, you will need to unload and reload the servers (not just stop and start the servers) before the change will take effect.

    Action:

Unload and reload the servers after any changes.

Bug 1847573 No error given when Oracle 9iFS Dashboard exits due to wrong preferred credentials.

    Description:

If you launch Oracle 9iFS Dashboard from within OEM and have incorrect credentials in the OEM preferred credentials, the Dashboard will exit without any error message.

    Action:

Set the preferred credentials to be the Oracle 9iFS schema name and password. Check the dashboard.log in the %ORACLE_HOME\9ifs\log directory for more information.

Bug 1857080 Oracle 9iFS Dashboard startup from command line outputs log to stdout.

    Description:

When invoking the Oracle 9iFS Dashboard from the command line (not from OEM), some messages are displayed on the terminal (standard output).

    Action:

None. These messages may be safely ignored.

Bug 1867608 NLS: Oracle 9iFS Help does not appear in same content window as other OEM Help.

    Description:

In the Oracle9i OEM Console, Oracle 9iFS related online help shows up with its own 'Contents', 'Index', and 'Find' tabs, separated from the rest of the OEM online help.

    Action:

None.

Bug 1718014 Cannot add extended attributes that are named the same as SQL reserved words.

    Description:

You cannot name an attribute with Oracle reserved words such as UNIQUE and SELECT.

    Action:

Choose other names for the attribute. See the Oracle9i SQL Reference for a list of reserved words.

Bug 1167418 Cannot change ACL of a User Object itself.

    Description:

The ACLs of DirectoryUsers cannot be changed in the Oracle 9iFS Manager.

    Action:

Go to the Web interface and select the user in the Users list. Click Edit->Apply ACL to update the ACL.

Bug 1388097 Cannot rename an ACL or User.

    Description:

ACLs or users cannot be renamed in Oracle 9iFS Manager.

    Action:

To rename an ACL, go to the Web interface, select the ACL in the ACL list and click Edit->Rename. Renaming a DirectoryUser requires a Java utility that can update the NAME attribute of the DirectoryUser.

Bug 2376959 Oracle 9iFS Dashboard does not report errors when given invalid credentials.

    Description:

If invalid credentials are passed to the Oracle 9iFS Dashboard, instead of reporting an error, the application disappears after failing to authenticate. The failure is reported in the command window where you attempted to launch the dashboard.

    Action:

Retry with correct credentials. Similar to Bug# 1847573.

Bug 2373906 Oracle 9iFS does not come up in Admin-only configuration.

    Description:

Cannot invoke the Oracle 9iFS Dashboard in an Admin-mode configured instance.

    Action:

Use any middle tier from which you can access the dashboard through the Java application as well as the EMD interfaces.

AFP Bugs

Bug 1990453 File Encrypt fails when using Mac OS Finder to encrypt files on Oracle 9iFS (mounted as AFP volume).

    Description:

The Mac OS File-->Encrypt utility creates temporary files containing * in their names. However, Oracle 9iFS does not allow filenames to contain an asterisk.

    Action:

Do not try to encrypt a file in Oracle 9iFS from a Mac. Instead, encrypt the file locally, on the Mac, and then copy the encrypted file to the Oracle 9iFS through AFP.

Bug 2380586 Content quota not set for resource fork documents.

    Description:

Content quota is not being set for resource fork documents, which means that quota status is not updated. Only the primary document (data fork) is accounted for in the quota, so the quota check will not be accurate in relation to documents uploaded or saved through AFP.

    Action:

None.

Bug 2380571 Size of a Macintosh file does not take into account the size of the resource fork document.

    Description:

The resource fork is not being included in size computations, so the size of the document is not necessarily accurate. For documents in which the bulk of content is in the resource fork, this bug may cause significant inaccuracies in the size computation and lead to quota issues. See bug 2380586 for issues pertaining to quota.

    Action:

None.

Bug 2369836 Locking a Macintosh document does not lock the resource fork.

    Description:

The resource fork is not locked when the document is locked, which allows users to access the document through Search.

    Action:

Do not modify resource fork documents accessed through Search.

E-mail Bugs

Bug 2328749 Removing the mail folder of an Oracle 9iFS system admin account causes a variety of problems.

    Description:

If the mail folder of the system user or any other system admin account is removed, this leads to inability to access information pertaining to any users or ACLs through the Web Interface. Secondly, you will not be able to change the Oracle 9iFS specific password for the system admin user from the Oracle 9iFS Manager tool. This would lead to that system admin user not being able login into any protocols that use the Oracle 9iFS specific password.

    Action:

None. You must recreate the Oracle 9iFS schema or contact your support representative.

Bug 1859056 Binary e-mail attachments are not content indexed.

    Description:

Content searches will not return matches on binary attachments in e-mails.

    Action:

None. Currently only text and HTML e-mail content and attachments are indexed.

Bug 1379886 Cannot delete non-ASCII folder name with Eudora 4.3.2.

    Description:

It is not possible to remove folders named with non-ASCII characters using Eudora 4.3.2.

    Action:

Use any other e-mail client, SMB, or the Web interface to remove the folder.

Bug 1380015 Unable to login into an IMAP account with a non-ASCII character in the name.

    Description:

If user name has non-ASCII characters, logging into the IMAP server may fail. This happens if the server character set is not set correctly.

    Action:

Set the Oracle 9iFS server default character set to ISO8859-1 or the appropriate multibyte character set.

Bug 1387952 E-mails sent from PINE cannot be opened in the Web interface.

    Description:

An e-mail that originated from a PINE client is not viewable in the Oracle 9iFS Web interface. The body of the e-mail will not be displayed. Instead, a "404 Document not found" error is reported.

    Action:

The e-mail can be viewed using any standard e-mail client suitably configured, and through Windows Explorer using Oracle 9iFS SMB.

Generic Oracle 9iFS Bugs

Bug 1857689 If custom classes conflict with new out-of- the-box Oracle 9iFS classes, the upgrade will fail.

    Description:

If custom classes created with release 1.x of Oracle Internet File system conflict with any classes that are new in Oracle 9iFS, the upgrade to Oracle 9iFS will fail.

    Action:

Prior to upgrading, the conflicting custom classes must be deleted and re-created with new names that do not conflict. The new classes added in Oracle 9iFS are:

  • interMedia Audio

  • interMedia AudioCdTrack

  • interMedia Image

  • interMedia Movie

  • interMedia Source

  • interMedia Video

  • MediaTextBlob

  • NodeConfiguration

  • PortletUserProfile

  • Rfc822ContentObject

  • Rfc822Message

  • ServerConfiguration

  • ServiceConfiguration

Bug 1724775 Content-based searches "OR-ed" with criteria that should also return non-indexed files will only return indexed files.

    Description:

A content-based search, such as "all files containing 'Bob'" OR-ed with an attribute search that should return non-indexed files, fails to return the non-indexed files in the search result.

    Action:

Break the search into two searches, the content search and the attribute search.

Bug 1855983 Uploading multimedia files containing multi-byte data may result in invalid characters in annotations.

    Description:

In a multi-byte Oracle Text-enabled installation, multi-media files (audio, video and images) are automatically annotated by the interMedia Annotator agent. For some installations, the interMedia Annotator incorrectly puts invalid characters in as the category metadata.

    Action:

Go to Regional Settings, select Language, and set as default.

Bug 2395258 Problems starting domain after it has been stopped.

    Description:

Attempts to start the domain using ifsstartdomain may fail if the domain has been stopped earlier and if OC4J is not stopped before attempting to restart the domain. A server socket that does not close when the domain is stopped causes this problem.

    Action:

When you stop the domain, make sure to stop and restart the OC4J instance before trying to restart the domain.

Bug 2378406 A temporary file, fcache*.dat, is not deleted if an audio, video, or image (AVI) file fails to get annotated.

    Description:

AVI files are annotated by interMedia; for several reasons, it is possible that the annotation may fail. Under these error conditions, the temporary file that is created is not cleaned up and deleted. If annotation fails for many AVI files, your "temp" drive may be completely filled by these temp files. This in turn may fill the hard drive and cause Oracle 9iFS installation to fail.

    Action:

Periodically check your temp drive and delete all fcache*.dat files.

HTTP Bugs

Bug 2244721 Frontpage 2000 edit in place feature does not save files in WebDAV folder.

    Description:

Frontpage 2000 edit in place on WebDAV folders is not supported in this release. The required server-side plug-in required to support this is not available.

    Action:

Save to the local disk and upload.

Bug 1930266 Using the drag-and-drop feature to move an XML file Into a Web folder creates an empty XML file (0-byte file).

    Description:

Using the drag-and-drop feature to move an XML file (to be parsed) into a web-folder results in a zero byte file.

    Action:

None

Bug 1393110 Folder names in top-level Oracle 9iFS directory are restricted.

    Description:

In an Apache environment, servlet names exactly matching one or more of the first characters of the name of a top-level directory will cause the Web interface to fail. For example, if the name of the servlet is files, the presence of a folder called files will cause the Web interface to fail.

    Action:

Do not create any top-level folder on Oracle 9iFS with the same first set of characters as the servlet name (by default, files).

Web Interface Bugs

Bug 1964796 NLS: Cannot search files using Japanese characters in Oracle 9iFS Portlet.

    Description:

The character set of the Portal database must be UTF-8, or searches from the Oracle 9iFS Portlet will not work.

    Action:

If the Portal character set is not UTF-8, have the user remove the search section from the Oracle 9iFS Portlet.

Bug 2289612 Quota section of an Oracle 9iFS Portlet displays as NULL.

    Description:

If users add the Quota section to their Portlets but their quotas have not been enabled by the administrator, the "Quota Used" value displays as NULL.

    Action:

Enable the user's quota, or have the user delete the Quota section from the Portlet.

Bug 2397200 Caching Issue when 9iFS Portlet is added to an Oracle Portal Page.

    Description:

When adding the 9iFS Portlet to an Oracle Portal Page, the page sometimes does not render the portlet, or the page is blank if no other portlets are displayed. This problem occurs because the WebCache configuration used by Oracle Portal sometimes caches a stale page. Browser refresh and Oracle Portal refresh do not reload the page.

    Action:

Log out of Oracle Portal and log back in to see the newly added portlet

Bug 2276285 Cut-and-paste group members results in IFS-62017 error message.

    Description:

When moving users from one group to another using cut-and-paste, you get the error message "IFS-62017: No path could be found to the original item. Try copy instead."

    Action:

Rather than cut-and-paste, use copy-and-paste, and then delete the members from the original group.

Bug 1831286 Uploading very large files with the Web interface fails without any feedback.

    Description:

Uploading very large documents (for example, over 100MB) via Browse in the Web interface can fail, possibly because of time-outs on the server.

    Action:

Use DAV (Web folders), use FTP directly, or another protocol.

Bug 1859980 On resizing the browser window on Macintosh, right frame doesn't load.

    Description:

When you grow or shrink the browser window on the Macintosh, you may notice that the tree (left) and container (right) frames do not reload.

    Action:

After resizing the window, press the reload button. Note: The tree (left frame) will not retain its current state.

Bug 1860905 Cannot create a document/folder location in portlet for a folder created using high ASCII characters.

    Description:

If you create a folder with high ASCII characters (8-bit characters), you cannot create a link to that folder in the Oracle 9iFS portlet.

    Action:

Choose a folder name that does not contain high ASCII characters.

Bug 1831063 Occasionally, cannot login even if username/password are correct.

    Description:

Stale data in the browser cache sometimes prevents users from logging into the Oracle 9iFS Web interface.

    Action:

Clear the browser's cache by pressing the Shift key and clicking Reload.

Bug 1853303 Clicking does not always open the folder in the right frame.

    Description:

After opening a folder using the tree (left) frame, subsequent clicking on folders in the container (right) frame may fail to display their contents.

    Action:

Use the tree (left) frame to open folders and other container objects.

Bug 1104090 In Netscape, uploading a folder using the drag-and-drop function fails.

    Description:

Using the drag-and-drop function in Netscape, uploading a folder and its contents will fail. This is a Netscape browser bug.

    Action:

You have several options:

  • If the folder's contents are not other folders, first create the folder in Oracle 9iFS, then upload the folder's contents using the drag-and-drop function.

  • Upload using browse rather than the drag-and-drop function.

  • Use Internet Explorer 5.0 or above.

Bugs 1252587, 1106093, 1263638 Library Session times out during long uploads.

    Description:

When executing tasks that require a long time to complete, such as complex searches, searches over a very large data set, or deleting a large folder tree, the connection times out and fails.

    Action:

Shut down the service and increase the SessionTimeoutPeriod parameter in the properties file. The default value is 10 minutes. Restart the service.

Bug 1372615 Using Internet Explorer, uploading a document with non-ASCII document name via the drag-and-drop function fails.

    Description:

Using Internet Explorer 5.0 or 5.5 to upload a file with a non-ASCII file name via the drag-and-drop function results in an error message that the file already exists. Choosing to overwrite the non-existent file causes the filename to be truncated when the file is stored in Oracle 9iFS.

    Action:

This is a known NLS bug with the FTP window in Internet Explorer 5.0 or 5.5. Either use upload via browse, or use a different protocol server to upload the file.

Bug 1374498 Non-ASCII file name is displayed as squares while viewing its parents.

    Description:

For a file with a non-ASCII name, if you open the View Parents window to see all the folders in which a file appears, the file name appears as a series of rectangles.

    Action:

Set your browser to ignore typefaces. For example, in Netscape, select Edit -> Preferences -> Appearance and set Fonts option to "Use My Default Fonts."

Bugs 1384904, 1379837, 1374374 Using Netscape, cannot upload a file with non-ASCII characters in filename.

    Description:

Using Netscape to upload (via browse) a document that has a non-ASCII filename, the upload fails.

    Action:

Use Internet Explorer or a different protocol to upload the file, such as FTP.

Bug 1399626 Uploading a file via the drag-and-drop function into a folder with a period in its name causes the file to open in Internet Explorer.

    Description:

Attempting to upload a document into a folder with a period in its name causes the upload to fail. Instead of being uploaded, the file displays in Internet Explorer.

    Action:

Navigating one level up from the folder (the folder with a period in its name), then back down into the folder will enable the upload to work.

Bug 1399646 Folder name with apostrophe cannot be opened.

    Description:

If a folder name contains an apostrophe, you cannot open that folder in the Web interface.

    Action:

Remove the apostrophe from the folder name.

Bug 1403302 Problems with theme searching.

    Description:

Using theme search in the Advanced Find window causes the web server to stop responding to requests.

    Action:

Do not use theme searches. (Theme indexing is turned off by default in Oracle 9iFS.)

Bug 1408308 Cannot link to specific versions of a document.

    Description:

Users cannot create a link to individual versions of a versioned document.

    Action:

If you want to reference a particular version of a document, you can paste and create a copy, but you cannot have a reference.

Bug 1416997 Tree frame operates incorrectly.

    Description:

The tree frame gives unexpected results if a folder in the tree is renamed using a different protocol.

    Action:

Refresh the browser.

Bug 1480275 Can't search for documents by language.

    Description:

The File Contents criterion of the Advanced Find window allows you to specify a particular string to search on and its language. Some users may think they're specifying a language attribute to search on.

    Action:

Use the Windows Utilities instead.

Bug 1524432 Changing default DAV renderer breaks Web interface.

    Description:

Changing the renderer implementation for the WebDAV renderer breaks the Web interface.

    Action:

Do not subclass Renderer and create a custom renderer.set.

Bug 1604545 Using UTF-8 encoded .js files causes web page error in IE for Simplified Chinese.

    Description:

Much of the user interface for the Web interface is generated by Javascript code. This is a known issue with some versions of Internet Explorer.

    Action:

Use IE5.5 (5.50.4134.0600) with Simplified Chinese systems.

Bug 1872138 Folder items are sorted uppercase first, then lowercase.

    Description:

When listing the items in a folder, the items are sorted case-sensitively, by name.

    Action:

None.

NTFS Bugs

Bug 1942092 Mapping NTFS drive logs in as System if NT username and password match.

    Description:

If 9iFS is running on a Windows NT or 2000 server that is using the Oracle 9iFS file system driver (NTFS), and a client machine mounts a network drive, and the user on the client machine connects to the server machine by supplying the Windows username and password of the server administrator account under which the file system driver was started on the server, that client machine will be logged into 9iFS under the 9iFS SYSTEM account, and thus has full 9iFS administrative privileges.

    Action:

This feature is by design, because the Windows account under which the 9iFS file system driver is started must have 9iFS administrative privileges in order to start the server. It does, though, allow a malicious user who obtains the Windows administrator password for the server machine to take control not only of the entire server machine itself, but also of the 9iFS repository running on that server. As always, administrators are strongly cautioned that the operating system account that is used to administer 9iFS must be kept secure using the standard security precautions applicable to the operating system--this account is as sensitive as any other administrator account and must be treated as such.

Bug 1289569 Delete appears to work on some files that a user should not be able to delete.

    Description:

No error messages are given when a user tries to delete a document that the user does not have permission to delete, or when a user tries to delete special objects, such as the inbox folder, which cannot be deleted.

    Action:

Although no error message appears, the document or folder is not deleted. Selecting Refresh in the Windows Explorer will cause the Windows Explorer to refresh the display and the document or folder will reappear.

Bug 1412048 In Windows NT with Service Pack 6, some .txt documents cannot be modified and saved in Wordpad.

    Description:

When editing a document with the Read Only attribute with Wordpad on NT 4.0 with Service Pack 6, you will not be able to save the document to a different name using the Save As dialog box. When trying to save the document under a different name you will receive an error stating that the document cannot be accessed because it is in use by another application.

    Action:

Remove the Read Only attribute before editing the document with Wordpad, or use another editor, such as Notepad.

Bug 1416024 Using wrong username/password in NTFS driver does not log you in as Guest.

    Description:

When using the NTFS driver, authentication for mapping the Oracle iFS drive is handled by the Windows NT system. Therefore, a valid windows user ID is required to map the drive. This is a system restriction for the NTFS driver.

    Action:

This is a Windows OS restriction. There is no work-around.

Bug 1417572 Cannot delete a locked folder.

    Description:

The NTFS server does not support locking or unlocking a folder, therefore, a folder that has been locked using another interface cannot be unlocked using NTFS. Locked folders cannot be deleted.

    Action:

Use a different user interface, such as the Web or Windows interface, to unlock the folder before deleting it.

Bug 1418267 Deleting files in locked folder is misleading.

    Description:

There are two problems with locked folders. Deletion of a file in a locked folder appears to succeed; however, upon refreshing, the deleted file appears. Also, the wrong error message is associated with errors copying a file into a locked folder. The current error message says, 'Cannot copy "filename." Make sure the disk is not full or write protected and that the file is not currently in use.`

    Action:

There is no way to delete a locked document or to copy a document into a locked folder.

Bug 1840335 Cannot use Notepad to edit or "save as" .xml files on NTFS protocol server.

    Description:

Using Notepad to edit .xml files in Oracle 9iFS results in the following error message:

o:\public\filename.xml
This file is on a network drive with create but 
no modify privileges. Ask the admin of this 
network to change this condition.

The problem is with Notepad and how it handles opening and closing .xml files (you won't see this problem with Notepad and .txt files).

    Action:

Create or edit the file on a local drive, then use the drag-and-drop function to move the file into Oracle 9iFS.

Bug 1846693 Cannot start NTFS protocol server from terminal services client session.

    Description:

Attempting to start NTFS protocol server from a terminal services session results in the following error message:

OracleIfsd driver failed to start.
If an Oracle iFS installation has just been completed then a system restart may be needed to complete the installation of the OracleIfsd driver.

The NTFS protocol server cannot be started from within a Windows terminal services client session.

    Action:

Start Oracle 9iFS from the Windows server console rather than trying to start it from a terminal services client session. Windows terminal services client sessions can only access devices that are already defined at the time the terminal session starts.

Bug 2332070 Under certain conditions, database connections acquired by the NTFS server are not released.

    Description:

Database connections are not released when an exception is thrown for a SQL error; exception handling does not release the connection. This problem can occur when another protocol is updating the same document, or if the document is being opened and written to by multiple processes. This problem can result in an increased number of database connections until the database limit is reached.

    Action:

Monitor the number of database connections. If the number of connections reaches the maximum for the database, shutdown and restart the 9iFS node to release the database connections.

Windows Utilities Bugs

Bug 1807421 User Profile: Keyboard shortcuts (alt+o and alt+n) do not work after authentication error.

    Description:

In the Oracle 9iFS User Profile dialog, the keyboard shortcuts stop working for the fields "Old Password" (alt+o) and "New Password" (alt+n) after password authentication errors.

    Action:

Use tab key or the mouse to navigate to these fields.

Bug 1728051 Oracle 9iFS "Find using Category" returns duplicate results.

    Description:

If a document is associated with more than one Category, those Categories have a subclass-superclass relationship, and the user requests a search on the superclass, then each document will be duplicated in the result set.

    Action:

Ignore the duplicate documents.

Bug 1416975 Missing some Oracle 9iFS operations for file with name longer than 256 characters.

    Description:

In Windows NT, if you use the drag-and-drop function on a file that has a file name longer than 256 characters, some of the Windows Utilities will not work.

    Action:

None. This is a Microsoft Windows limitation.

Bug 1873831 Ifs Find: Memory consumption of about 200k/document.

    Description:

In Windows Find, if the result set objects has too many associated Categories (even though the Category is not in the search criteria list), the Windows client allocates and holds memory (as much as to 200KB per returned object) until the user exits the Find window.

    Action:

If insufficient resource problems occur, the user should limit the search to a smaller result set.

XML Bugs

Bug 2315656 Using the Commandline Utility (CUP) in a multi-byte installation, rendering an Oracle 9iFS object may fail.

    Description:

Some localized attribute names may contain non-ASCII characters, which are not valid in the Commandline Utility and so cannot be rendered correctly using XML.

    Action:

Go to Regional Settings, select Language, and set as default.

Oracle is a registered trademark, and Oracle9i, PL/SQL, and SQL*Plus are trademarks or registered trademarks of Oracle Corporation. Other names may be trademarks of their respective owners.

Copyright © 1999, 2002 Oracle Corporation.

All Rights Reserved.

All Rights Reserved.


Oracle
Copyright © 1999, 2002 Oracle Corporation.

All Rights Reserved.