Lotus

Extract Lotus Notes Document's complete ACL from Java

我的梦境 提交于 2019-12-10 20:17:55
问题 I'm trying to find a way to save the complete user list access privileges for a specific lotus notes document. I know I can get database-level ACL's from catalog.nsf, but not document-level access. Also the Author field of the document -I believe- won't list read-only access users. Does anyone know how to obtain the complete ACL of every user for a specific document? Any help is appreciated, thanks! Edit: spelling. 回答1: Simon is correct. It is non-trivial. Even though I would skip his

Mercurial Setup for Lotus Domino Designer 8.5.3

孤人 提交于 2019-12-10 13:48:17
问题 Working on getting the Mercurial Source Control installed and working with Lotus Domino Designer 8.5.3. Been using Declan's powerpoint from Lotusphere 2012 "AD102: Source Control For The IBM Lotus Domino Developer" as a guide. What I've done so far is: Install 8.5.3 Client and Designer via the CI1LPEN.exe install file Enabled Eclipse plug-in install from designer preferences Did a File, Application, Install of 1.6.0 MercurialEclipse and 1.4.3 Mercurial Binaries from http://cbes.javaforge.com

Lotus Notes Diff Tool

强颜欢笑 提交于 2019-12-09 12:59:40
问题 Is there any diff tool for Lotus Notes which allows to compare scripts, design elements and documents? 回答1: If all else fails (and by "all else" I mean the often ridiculous corporate procurement system) you can always do a an export to DXL (or a Design Synopsis for code alone) and use any decent text editor with a diff function. It's not TeamStudio Delta, but it will get you where you want to go. 回答2: I see this is an old question, and most of the other answers are a little outdated now, so I

Notes Sessions Vs Lotus Session COM API Issues

ぃ、小莉子 提交于 2019-12-08 11:52:59
问题 I maintain a fairly large application which does a lot of talking with Lotus Notes. Recently in the last couple of months, some users have been having problem connecting to the Lotus Notes Session, I use the following code to get the session Set Session = CreateObject("Notes.NotesSession") This error seems to be popping up only for a certain number of users. I created a sample app with the following line Set Session = CreateObject("Lotus.NotesSession") And the above line works for some reason

Create a meeting or calendar item using Domino Data Service(REST service)

旧街凉风 提交于 2019-12-08 04:50:29
问题 I am trying to book a mail room using Domino Data service.Can anybody please guide me in which form i have to create a document? I am using 9.0.1 of Lotus Domino. 回答1: Domino Access Services provides a special API for calendar. You need to use the Calendar events POST (available since 9.0.1, which is you are using) as described in the documentation JSON event representation is also described here with samples. 来源: https://stackoverflow.com/questions/29137917/create-a-meeting-or-calendar-item

how to save form values to DB in domino designer by Lotus Script

心已入冬 提交于 2019-12-08 03:30:52
问题 I am new to Domino designer and lotus script, following my first question 1) How can I save form values to DB 2)How can I view DB( like MS access) 3) How to create view to retrieve values from DB Googled for it but found a link to save to db solution. I tried Sub Click(Source As Button) Dim myText As String Dim workspace As New NotesUIWorkspace Dim uidoc As NotesUIDocument Dim doc As NotesDocument Dim enteredText As String Dim session As New NotesSession Dim db As NotesDatabase Set db =

How to send email in lotus notes using PHP

a 夏天 提交于 2019-12-08 03:11:41
问题 Need to send email using PHP via lotus notes. Notes is configured on my system. So just wanted if I could send email using PHP. Can anybody help with the code and configuration that I am supposed to do? After reading replies from all of you, I tried to nail down things from my end. I could at least move one step ahead with all your help. I could figure out my mail server using GetEnvironmentString and its damn correct as also reflected in my lotus notes work space. But when I am trying to use

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

你离开我真会死。 提交于 2019-12-08 01:44:43
问题 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

How to send email in lotus notes using PHP

∥☆過路亽.° 提交于 2019-12-07 16:45:25
Need to send email using PHP via lotus notes. Notes is configured on my system. So just wanted if I could send email using PHP. Can anybody help with the code and configuration that I am supposed to do? After reading replies from all of you, I tried to nail down things from my end. I could at least move one step ahead with all your help. I could figure out my mail server using GetEnvironmentString and its damn correct as also reflected in my lotus notes work space. But when I am trying to use the below code it just keeps on loading and finally returning nothing - <?php require_once "Mail.php";

Domino 生成邮件到草稿箱

江枫思渺然 提交于 2019-12-07 12:21:23
相关架包下载地址: http://download.csdn.net/detail/qm4050/5531483 代码如下: import java.io.File; import lotus.domino.Database; import lotus.domino.Document; import lotus.domino.Item; import lotus.domino.NotesException; import lotus.domino.NotesFactory; import lotus.domino.RichTextItem; import lotus.domino.Session; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class MailPDF { private static final Logger log = LoggerFactory.getLogger(MailPDF.class); private Session session; private Database mailDb; private static MailPDF instance = new MailPDF(); private MailPDF() { } /** * 构造器 * * @param