thanks for the inputs. But my question was how can a Notes client be automatically made to be launched when we click on a DXL file. I'm not sure if this is possible or not.
The reason why we need this is that the users don't want to just open the emails right there and not do this as a multi step process of
1. Creating a temp nsf file.
2. Importing all the DXL files into that database.
3. Now open Notes client and view the emails imported through DXL.
Main Topics
Browse All Topics





by: mbonaciPosted on 2008-10-09 at 11:33:12ID: 22681133
You used DXLExporter to create DXL file from Domino data (document).
The DXLImporter class converts DXL to Domino data. Use the createDXLImporter method in Session to create a DxlImporter object. Input to DxlImporter can be a String, Stream, or NotesRichTextItem object. Output is to a Database object.
The import operation constructs a list of note IDs for the newly imported notes. You can access these note IDs using the getFirstImportedNoteId and getNextImportedNoteId methods.
Here's an example of an agent that converts a DXL file into a newly created database:
Select allOpen in new window