This section describes how to extract password-protected container files by using the Java API. The following guidelines apply to specific file types.
IBM Notes NSF files. If you are running a Notes client with an active user connected to a Domino server, you must specify the user's password as a credential regardless of whether the NSF files you are opening are protected. This enables KeyView to access the Notes client and the IBM Notes API. If the Notes client is not running with an active user, KeyView does not require credentials to access the client.
PST files.To open password-protected PST files that use High Encryption (Microsoft Outlook 2003 only), you must use the MAPI-based PST reader (pstsr). The native PST reader (pstnsr) returns the error message KVERR_PasswordProtected
if a PST is encrypted with High Encryption.
To open container files
Set the credential information to an ExtOpenDocConfig
object, and pass it to the extOpenDocument
method.
For example:
dconfig = new ExtOpenDocConfig();
odconfig.setPassword(m_password);
extContextID = m_objExportFilter.extOpenDocument(inFile, odconfig);
|