lotus-domino

Lotus Notes API giving error while accessing the NSF

久未见 提交于 2021-02-11 14:15:51
问题 I have been working for accessing the Lotus Notes(.nsf) data from the external server using JAVA Lotus notes API, but I'm getting the following error for Lot of functions while accessing the NSF. NotesException: Not implemented at lotus.domino.cso.Base.notImplemented(Unknown Source) at lotus.domino.cso.View.getAllUnreadEntries(Unknown Source) at com.lotus.GetName.runNotes(GetName.java:40) at lotus.domino.NotesThread.run(Unknown Source) Observations: I have rechecked my settings with class

Lotus Notes API giving error while accessing the NSF

不想你离开。 提交于 2021-02-11 14:08:25
问题 I have been working for accessing the Lotus Notes(.nsf) data from the external server using JAVA Lotus notes API, but I'm getting the following error for Lot of functions while accessing the NSF. NotesException: Not implemented at lotus.domino.cso.Base.notImplemented(Unknown Source) at lotus.domino.cso.View.getAllUnreadEntries(Unknown Source) at com.lotus.GetName.runNotes(GetName.java:40) at lotus.domino.NotesThread.run(Unknown Source) Observations: I have rechecked my settings with class

Consume REST service in server-based agent

佐手、 提交于 2021-02-08 05:45:22
问题 We're asked to build a Domino server-based database that exchanges data with a remote non-Domino server. The remote server can be connected to by using webservices. Creating a RESTful service in Domino seems simple, using R8.5.3: there are some very interesting articles on Domino Data Service on the Internet. Studying this page will certainly help me to create one end of the connection. Now for the consuming part in the agent. We did this once before, some time ago, and then we used plain

HCL Domino AppDevPack - writeAttachments

情到浓时终转凉″ 提交于 2021-01-29 11:50:43
问题 The new V1.0.2 has new capabilities to upload attachments to a domino document. My upload code is successful as long a I use files <= 48KB. As soon as I try to upload a larger file, the upload takes place, in the domino document I find an attachment with the right size - but the file is corrupt! Here's my code (corresponds to example code from appdev pack documentation for larger files): for (var x = 0; x < files["tskFile"].length; x++) { let sFilename = files["tskFile"][x].originalname; let

Access calendar data Lotus Notes C#

人盡茶涼 提交于 2021-01-29 10:50:12
问题 I'm trying to access a Lotus Domino database. Can it be done with C#? Are there some examples out there that I could look at? 回答1: There are lots of examples out there, just try searching for it. This example could get you started: //This DLL you've got to add under Project-> Add Reference --> COM Tab --> Lotus Domino Objects //Standard Path for this DLL is: "C:\Program Files\Notes\domobj.tlb" using Domino; //domobj.tlb* ... try { //------------------------------------------- //!!Important!!

Retrieving NotesDocumentCollection during QueryPaste

北战南征 提交于 2021-01-29 09:13:50
问题 Is this possible in Notes? I am currently using version 11. I have a form with an embedded view in it. This view has code in the QueryPaste function. For example it has the code: Sub Querypaste(Source As Notesuiview, Continue As Variant) Dim ndcRegel As NotesDocumentCollection Dim docRegel As NotesDocument Set ndcRegel = source.Documents Msgbox "1" Msgbox source.Documents.Count etc... When copy and pasting a document in the embedded view, it triggers Msgbox 1 first and then for the count I

Retrieving NotesDocumentCollection during QueryPaste

回眸只為那壹抹淺笑 提交于 2021-01-29 09:06:42
问题 Is this possible in Notes? I am currently using version 11. I have a form with an embedded view in it. This view has code in the QueryPaste function. For example it has the code: Sub Querypaste(Source As Notesuiview, Continue As Variant) Dim ndcRegel As NotesDocumentCollection Dim docRegel As NotesDocument Set ndcRegel = source.Documents Msgbox "1" Msgbox source.Documents.Count etc... When copy and pasting a document in the embedded view, it triggers Msgbox 1 first and then for the count I

(Domino Notes)How to move documents from the original NSF to another NSF?

荒凉一梦 提交于 2021-01-07 04:12:34
问题 There are two NSF on the server, and there are many documents in the two NSF. When I divide a case in NSF A to a specific member, is there a way to move the document to NSF B? When dividing a case into a specific member, there is a field in the document to display the name of the member. If it is feasible, how is it achieved? Is it copied or moved? Is it possible to share the method? 回答1: Use the CopyToDatabase method of the Document class. Here's a simplified LotusScript example: Dim

Select All checkbox lotus xpages

心已入冬 提交于 2021-01-05 13:15:46
问题 I'm working on an Xpages application on which I have a view control. I tried to put a checkbox in the column header to select all of the check boxes in the view. The problem is when I go to another page from the view, its lines are not checked and the selection is made only on the visible page. So, I want to be able to select all the rows in all the pages of the view, this without the selection disappears when switching from one page to another of the view. 回答1: There are couple of problems

Select All checkbox lotus xpages

谁说我不能喝 提交于 2021-01-05 13:15:21
问题 I'm working on an Xpages application on which I have a view control. I tried to put a checkbox in the column header to select all of the check boxes in the view. The problem is when I go to another page from the view, its lines are not checked and the selection is made only on the visible page. So, I want to be able to select all the rows in all the pages of the view, this without the selection disappears when switching from one page to another of the view. 回答1: There are couple of problems