lotus-notes

Best practices for version control for Lotus Notes/Domino development

泄露秘密 提交于 2019-12-21 10:22:34
问题 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). 回答1: The openntf project Design Catalog can be used for version control. It uses dxl technique mentioned by kerr. www.openntf.org

Source Control in Lotus Domino Designer

夙愿已清 提交于 2019-12-21 05:41:27
问题 We have been using Domino on a large project for years without any real source-control (other-than server backups). So, I was rather pleased when I noted the latest Designer 8.5.3 has potential integration with SVN. I was unable get SVN working just by following the original instructions for as already noted on Stackoverflow the update sites have moved. The solution posted on OpenNTF, only half worked, with Domino still croaking at GEF, Mylyn and some other missing plugins. After finding and

.NET and Lotus Notes Interop

别等时光非礼了梦想. 提交于 2019-12-20 09:44:38
问题 I've Lotus Notes database file (.nsf) at some location, let's say: http://intranet.mycompany.com/somewhere/data.nsf Is it possible in any way to read from that location using any .NET language? 回答1: Take a look at these resources: http://www.ibm.com/developerworks/lotus/library/domino-msnet/index.html http://www.codeproject.com/KB/cs/lotusnoteintegrator.aspx http://www.builderau.com.au/architect/database/soa/Create-an-ODBC-connection-to-a-Lotus-Notes-database/0,339024547,320282240,00.htm 回答2:

send email to a specific Lotus Notes contacts using VBA

不想你离开。 提交于 2019-12-20 05:12:44
问题 I have 'column A' with different names. I have all this people email contacts in my lotus notes account. I want to send an email to multiple recipients (to the people including in column A). I mean: column A: Ludvig Simpson Matthew Ricky Anne Cameron etc... And for example Ludvig Simpson has this lotus email address: dbyw4680, Matthew Ricky has cjua321 and Anne Cameron has ofdb1621. All this email addresses are found only in my lotus account. My question: How can I send an email to Ludvig,

checking if current user is author of the document

自闭症网瘾萝莉.ら 提交于 2019-12-20 04:32:07
问题 I have a formA where I have a field '_author' which is of type Authors/Computed for display with value (@Subset($Updatedby;1)). I display information from formA on viewA. What I want to achieve is that documents that are created by you are only visible to yourself on viewA. I tried the following formula in viewA 'View Selection': SELECT (form = "formA" & @UserName =_author). Even though I know that these two variables have the same values when I read it from the document's properties, the

checking if current user is author of the document

空扰寡人 提交于 2019-12-20 04:31:01
问题 I have a formA where I have a field '_author' which is of type Authors/Computed for display with value (@Subset($Updatedby;1)). I display information from formA on viewA. What I want to achieve is that documents that are created by you are only visible to yourself on viewA. I tried the following formula in viewA 'View Selection': SELECT (form = "formA" & @UserName =_author). Even though I know that these two variables have the same values when I read it from the document's properties, the

Using enum singleton coding pattern in a Domino Java Agent

冷暖自知 提交于 2019-12-20 03:40:20
问题 So this is the very simplified Lotus Domino Java agent code I am trying to run... import lotus.domino.*; enum SingletonTest { INSTANCE; public void helloWorld() { System.out.println("Hello World"); } } public class JavaAgent extends AgentBase { public void NotesMain() { try { System.out.println("Started"); SingletonTest.INSTANCE.helloWorld(); System.out.println("Done"); } catch(Exception e) { e.printStackTrace(); } } } But when I try to run it this is what appears on the Java Console...

Create room reservations using Domino data services REST API

不想你离开。 提交于 2019-12-20 03:11:48
问题 I've been attempting to create room bookings using the Domino data services REST API but I seem to be missing a trick. Sending a POST request to the document endpoint I am able to submit and create a reservation document which appears in the Rooms and resource view but the underlying room still shows as available in the notes client. Here is a sample of the request body: { "@authors": [ "CN=Andrew Jones/O=MyCorp", "" ], "@form": "Reservation", "From": "CN=Andrew Jones/O=MyCorp", "Chair": "CN

Lotus Notes Java app can’t find notes.ini

时间秒杀一切 提交于 2019-12-20 03:06:19
问题 Both the systems described are Windows XP with Lotus Notes 8.5. I have a Java app (sample code below) that uses notes.jar to interact with Lotus Notes. The app works fine on a system that has notes.ini in the Lotus install dir of c:\Program Files\Lotus\Notes and the user ID file is in c:\Program Files\Lotus\Notes\Data . The user has to type a password to login to Lotus. This system has HKLM\Software\Lotus\Notes\MultiUser set to 0 (single user system). On this machine, the below code displays

Fail to open Database using java notes api

烈酒焚心 提交于 2019-12-19 09:24:09
问题 I am trying to use a java program to control my lotus notes locally to send email automatically for me. I have encountered the following issues when trying to get a database object. try { NotesThread.sinitThread(); Session s = NotesFactory.createSession(); Database db = s.getDatabase("", "mail/xxxx.nsf") } finally { NotesThread.stermThread(); } I got the following Exception: NotesException: Database open failed (%1) at lotus.domino.local.Database.Nopen(Native Method) at lotus.domino.local