lotus

In a LotusScript Agent how do you get the name of the current server?

In a LotusScript Agent that is being run via WebQueryOpen, how do you get the name of the current server? ...

Problem sending emails with lotus domino server

We have been using lotus domino server for sending out emails for a number of years but out of a sudden. It cannot send out emails anymore. Anyone have any idea on how to check whether is there any misconfiguration done or is there any logs for this ? ...

Best practices for version control for Lotus Notes/Domino development

The title says it all - 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 pla...

Lotus 123 to Excel 2003 conversion

I have been asked to convert some Lotus 123 wk4 files with macros to excel 2003, I know the data will convert with most formulas. I am wondering if there is a way to convert the lotus macros also. ...

How do I Use a Date in an Array in GetAllEntriesByKey?

Hi, I'm trying to use the current day in GetAllEntriesByKey by passing an array. The array so far looks like this Dim keyarray(2) As Variant keyarray(0) = "FF Thompson ADT" Set keyarray(1) = dateTime I would like to say this Set vc = view.GetAllEntriesByKey(keyarray, False) Here is a row of what it looks like when it work...

Using java api to read lotus notes documents

I am using the Lotus Notes 6.5.1 java API to read an .nsf file. Every document in the .nsf file has multiple document history. While traversing through the documents in the .nsf file using the LN java api I am getting all the document versions as separate documents. How do I ensure only the latest version of each document is retrieved by...

development on SharePoint v.s. development on Lotus Connections

Hello everyone, I am selecting between SharePoint and Lotus Connections, and I want gurus give me some advice. The functions I want to have is, portal/content management/workflow/various ways of communication (IM/audio/video/multi-party conference), better to have personal blog or team blog. Another key issue I want to consider is the ...

How to restrict a lotus view to the content of some folders ?

I am trying to make a view which selects all unread mails which also belong to a specific list of folders and subfolders. I created a view by coying the existing "view unread" one, but despite my research in the documentation and in google I am at a loss as to how to restrict the content of the view to documents in a list of folders. ...

Domino 6.5 - close document in frameset - closes app

I'm working on a Domino Client application that opens documents up in a frameset. When I click the save button it does some lotus script validation, adds to history field and etc then finally does a save: Sub Click(Source As Button) Dim validate1 As Validation Dim ws As New NotesUIworkspace Dim s As New NotesSession Di...

JCE problem in Lotus Expeditor (IBM's custom Eclipse runtime)

I'm trying to authenticate to Google Apps using the GData client library. I've imported the needed jars and dependencies from the library into my Eclipse environment and verified that test code that calls the service works when run (a) as a POJO and (b) as a standard Eclipse plugin. When running in the Expeditor runtime (j9vm - Lotus Sym...

Update UIDocument in LotusNotes

Hi all I have been working on a Notes integration project and I am using the Domingo API for communicating with Lotus Notes. This API is very useful, however I don't see any NotesUIDocument class and limited support for RichText in Lotus Notes. I have checked in the Notes.jar file and even that jar file seems to miss the NotesUIDocument...

Lotus Domino web view - should only show current user's docments - but shows more?

I'm working on a Lotus Domino Web application and I have a view that should only show the current user's documents. I know this is not the best for the server because it has to keep calculating this, but it is a requirement... This is the view selection formula that I'm using: SELECT (Form="Atom Request" | Form="AtomRequest") & @Nam...

How to open 2 instances of Lotus Notes using a VB Script

I am having to connect to 1 mail server via LAN for my internal work and to a second mail server outside of my LAN but through a VPN connection in order to do my work as well as both sides of this has information that I cannot access from my LAN. I have 2 Lotus Notes ID files and passwords and would like a VB Script that will create a s...

Web (anchor) link to a Notes database

Hi Is there a way to create a regular web (or anchor) link that will open a Notes client and display a pre-determined database from the workplace? Thanks in advance. Ronnie ...

How to access Lotus Notes's Notebook items using C# ?

Hi, I am able to access Mails,Calendars e.t.c from Lotus Notes. But i am not getting how to access Notes (Notebook). I am using "Introp.Domino.dll". ...

How get all calendar entries for a given using the Notes.Jar for Java

I am working on a simple java code to extract all calendar entries for a given date. I know it possible using Domingo but I would like to use only Notes.jar for this purpose. It is possible for me to create a session based on a given credentials and get the calendar object. I am looking to extract the current running notes session and us...

Extract/Export attachements from Lotus Notes Email using C#

Hello I need to extract/export the lotus notes email attachment into file system. for that I wrote following method but each time I am receiving an error at line foreach (NotesItem nItem in items).. Can anybody please tell me what I am doing wrong .. Thanks Jwalin public void GetAttachments() { NotesSession session = ...

How to avoid accidental deletions of databases in Lotus Notes?

I have always worried about users deleting lotus notes databases by accident. We had one such case last week and I want to know how we can lock the databases so that users cannot delete them. Is there a way in Lotus Notes - either at the Db level or server level where we can set up the database so that only the administer of the db or t...

Debugging a Domino/Notes DSAPI filter

I've built a DLL for Domino Server 8.5 for Windows and installed it as a DSAPI filter, but every time I restart Domino I get "HTTP Server: Failed to load DSAPI module C:\path_to_filter\filter.dll" Is there any way to determine why this is failing to load? I built the DLL from a C++ project in Visual Studio 2008 and used the libraries a...

Get Today's Calendar Entries in Lotus Note using Java

I am trying to get the calendar entries for a given day. The code works without error however I am getting a wrong calendar date entry. I am sure the formula is correct but neverthless would appreciate any help on this. Here's the code. long startTime; long endTime; String searchFormula; DocumentColle...