Lotus

Calendar integration to Domino (Lotus Notes)?

为君一笑 提交于 2019-12-07 12:05:02
问题 How do I integrate with a Lotus Notes Domino server? I know there are several versions and the answer would be different for each one, but advice on any version would be great at the moment as I haven't gotten the info on what server it is I'm supposed to integrate with yet. Assume version 6+. I'm assuming I need to do the integration with the server and not the local Lotus Notes client, but that might not be correct? I need to both read and write to the calendar appointments of a select

send appointment invitation to lotus notes 8.5 clients via c#

半世苍凉 提交于 2019-12-07 12:01:25
问题 i am using Interop.Domino.dll and able to send mail via c# code to lotus notes 8.5 users. now i want to send appointment invations to users via c# code. here is my code. oNotesDocument.ReplaceItemValue("Form", "Appointment"); oNotesDocument.ReplaceItemValue("AppointmentType", "3"); // meeting oNotesDocument.ReplaceItemValue("Subject", "Deneme Toplantı"); oNotesDocument.ReplaceItemValue("CALENDARDATETIME", StartDate); oNotesDocument.ReplaceItemValue("StartDateTime", StartDate); oNotesDocument

Write contents of InputStream to a RichTextItem and attach to a Notes document in Java

本小妞迷上赌 提交于 2019-12-06 08:14:27
I am able to attach a file to RichTextItem of a domino document that I receive as an InputStream . Below is the code snippet: attachDocument(InputStream is){ ..... File attFile = saveInputStr(is); Document attdoc = testdb.createDocument(); attDoc.replaceItemValue("Form", "formAttachment"); RichTextItem rti = (RichTextItem) attDoc.getFirstItem("attachment"); rti.embedObject(EmbeddedObject.EMBED_ATTACHMENT, "", attFile .getPath(), attFile .getName()); ..... } This works fine. But what if I don't want to write the file to disk, like I save it to a File i.e. attFile in the above snippet. Is there

Calendar integration to Domino (Lotus Notes)?

谁说我不能喝 提交于 2019-12-05 21:03:50
How do I integrate with a Lotus Notes Domino server? I know there are several versions and the answer would be different for each one, but advice on any version would be great at the moment as I haven't gotten the info on what server it is I'm supposed to integrate with yet. Assume version 6+. I'm assuming I need to do the integration with the server and not the local Lotus Notes client, but that might not be correct? I need to both read and write to the calendar appointments of a select number of users. For instance I should be able to create/update/delete a appointment for a certain user.

Way to check is an user a document author?

守給你的承諾、 提交于 2019-12-05 20:48:24
问题 Hello Domino programmers! I work on a lotus database + xpages and i ran into a following problem: I have Authors and Readers fields on document and both can contain users and groups. Both fields are set on XPage using NamePicker control. When document is saved i would like to hide an "Edit" button when user doesn't have rights to do so. Is there a way to just check on document, datasource or context - if current user is document author? Or i have to check it all way long, comparing Authors

Convert IBM Lotus Notes file to text

◇◆丶佛笑我妖孽 提交于 2019-12-05 18:52:37
How can I convert an .nsf lotus file to a text file? i want to write a java program to read .nsf file which is on my system. i have tried it simply but it is showing non english character is their any way to get access them normaly. EDIT: That code is in .net and using any server's session, I just want to read .nsf file by java without creating any server's session in fact i have .nsf database. i just want to read as a text file.if there a way to parse .nsf with javacc,it would be better enough...... lotus notes database is full of proprietary design components. Assuming you just want to

send appointment invitation to lotus notes 8.5 clients via c#

隐身守侯 提交于 2019-12-05 18:48:11
i am using Interop.Domino.dll and able to send mail via c# code to lotus notes 8.5 users. now i want to send appointment invations to users via c# code. here is my code. oNotesDocument.ReplaceItemValue("Form", "Appointment"); oNotesDocument.ReplaceItemValue("AppointmentType", "3"); // meeting oNotesDocument.ReplaceItemValue("Subject", "Deneme Toplantı"); oNotesDocument.ReplaceItemValue("CALENDARDATETIME", StartDate); oNotesDocument.ReplaceItemValue("StartDateTime", StartDate); oNotesDocument.ReplaceItemValue("EndDateTime", EndDate); oNotesDocument.ReplaceItemValue("StartDate", StartDate); /

Call to getEmbeddedObjects(); (Domino Server API) returns wrong results

别等时光非礼了梦想. 提交于 2019-12-04 03:49:05
问题 The Domino server API getEmbeddedObjects(); returns the wrong result (zero) when a mail containing an attachment (as embedded object) is sent from the script. Though an attachment is sent as an EmbeddedOBject , getEmbeddedObjects(); returns ZERO . The mail type is NOT MIME . This is a Java application. Is there is any workaround for this problem? I take the body from the document. If the body is of richtextitem, I call the getEmbeddedObjects() which returns zero though an attachment is

Best practices for version control for Lotus Notes/Domino development

拈花ヽ惹草 提交于 2019-12-04 03:43:23
Please share how you do version control for Lotus Notes/Domino development. I want to put in our SVN repository all the scripts, views, custom forms, script libraries, etc. Semi-automated methods are accepted as well (i.e. if I find a way to get all the event scripts for a form in one file, and to be able to place it back in Notes Designer as a whole file). The openntf project Design Catalog can be used for version control. It uses dxl technique mentioned by kerr. www.openntf.org/projects/pmt.nsf/ProjectLookup/DesignCatalog At lotusphere the lotus911 people mentioned they used the Design

Way to check is an user a document author?

随声附和 提交于 2019-12-04 03:33:14
Hello Domino programmers! I work on a lotus database + xpages and i ran into a following problem: I have Authors and Readers fields on document and both can contain users and groups. Both fields are set on XPage using NamePicker control. When document is saved i would like to hide an "Edit" button when user doesn't have rights to do so. Is there a way to just check on document, datasource or context - if current user is document author? Or i have to check it all way long, comparing Authors fields - multiple usernames and groups with current username? Any help will be appreciated. You can use