lotus-domino

Extracting Metadata of Lotus Notes Applications Using Notes Java API?

Hi All, I am looking for extracting metadata about Notes Applications on a Domino server using Java Notes API. I tried reading the list of applications/databases from catalog.nsf file. But catalog.nsf does not have new Applications that are created based on a existing template. So From where can I get the list of applications that a...

How to create and run an agent from java, Using Lotus Notes api

I am trying to create an agent and run it!! I have created two classes, one extends AgentBase . and the other one is a normal main class. I have written the code for agent in the 1st class and trying to run it from the second class. But i am not able to access it. I am a complete novice here, any guidance would be appreciated. Agent Cla...

How to use a LotusScript function as a document selection routine

Can we use a lotusscript function as a document selection routine inside view selection formula ? Here is my lotus function which determines the selection criteria Function MyFilter(doc As NotesDocument) as boolean 'very complex filtering function '........ End Function and here is the view selection formula that i want to incorpo...

Allow a user to select a folder path in Lotus Domino

Hi Everyone, What is the best way to allow a user to select a folder path in domino? Help would be greatly appreciated. Regards Stina ...

How to print exception stacktrace in Lotus Domino Designer console.

I'd like to look at console output when my agent is run. Or how to set up file output. ...

Quickr Service to manage the security restrictions of a document

Is there a Quickr REST service (or QPAPI service) to manage the security restrictions of a document? I have found services to manage the members and roles of a Place, but no one in a document per document basis. ...

TimeZone problems using Lotus Java/CORBA session.createDateTime(Calendar)

I am attempting to create Domino DateTime objects in arbitrary time zones using the Lotus Java/CORBA classes. I appear to be successful for all time zones which have a base offset which is an integer number of hours. For fractional time zones, notably half-hour ones like Iran, India and Sri Lanka, or even less common ones like Nepal wi...

VBA - grabbing column names from lotus notes database using getColumnNames method

So I have a view (object name is 'view') in a Lotus Domino db from which I want to grab the column names and put them in an array: Dim view As Domino.NotesView Set view = db.GetView(viewScen) //viewScen is a string containing the actual view's name //db is a string containing the actual db name These declarations work fine, but wh...

Lotus Notes Java app can’t find notes.ini

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 t...

Lotus Notes/Domino Designer 8 - Disable shared action refresh

I am working in Lotus Notes 8 using the Domino Designer to update a shared action under: Shared Code >> Actions Every night when the database refreshes my changes are being wiped out. Other files have a do not refresh option in them but, the actions do not. Does anyone know how I can update the file to not be over-written ...

Notes createDxlExporter() API not working

Hi, I am writing java application which will export the design time data of forms and views of a Notes application in DXL XML format.So I am using Notes java API createDXLExporter to export. But it is not returning any data about forms or views. Below is the code snippet NoteCollection nc = database.createNoteCollection(false); nc.setS...

Lotus Notes/Domino Designer 8 - Get User Name from E-mail

I have a bunch of users I am adding to conference. They are contained both in a user's address book and on the Notes server/main company address book. Once I have the e-mail address of a user, is there a way to look up their user name? ...

Implementing a moderated internal mailing list with Lotus Domino

Hi In Lotus Notes, I use Groups to implement "internal" mailing lists ("internal" because only users with Lotus Notes accounts can be member of the groups). Is there an easy way to moderate emails sent to this group? Let's say I have a group (everyone-in-the-office) and Alice sends an email to everyone-in-the-office. I would like mode...

Lotus Notes: RichText Item

Okay, here's the deal. I am using C# with the Domino API. I have some rich text data that I want to insert into a lotus notes rich text field. NotesDocument.ReplaceItemValue just inserts the text as is with no formatting. NotesDocument.CreateRichTextItem gives me a NotesRichTextItem object that I can use for manually creating RichText ...

Are there any default Lotus Domino web services?

Hi, We're looking into developing an application that can read from and write to Lotus Domino, specifically adding, updating, removing appointments. We've done the same thing for Exchange and GroupWise. We don't have experience with developing for Lotus Domino yet, but we've been looking at documentation from IBM and other results from...

Lotus Notes API Error in loading DLL

My client is using Lotus Notes 8.0.2. I am trying to use the following VBScript to call the Notes API to send an email: dim objNotesSession, objNotesDatabase, objNotesItem, objNotesRichTextItem set objNotesSession = CreateObject("Lotus.NotesSession") Call objNotesSession.Initialize("[password here]") set objNotesDatabase = objNotesSess...

Redirect from Web query open agent on Lotus Domino?

Doe anyone know a way of redirecting to another webpage from lotus domino web query open agent? The print statement does not seem to work. A possible workaround would be very appreciated! Something on that subject can be found here but it seem kind of flaky. http://www-10.lotus.com/ldd/46dom.nsf/55c38d716d632d9b8525689b005ba1c0/552ac51d...

Lotus Notes Diff Tool

Is there any diff tool for Lotus Notes which allows to compare scripts, design elements and documents? ...

How to get the underlying view of a form using lotusscript

Hi, I am a newbie in lotusscript. We have a legacy lotus notes/domino system. We need to migrate the data from lotus notes to oracle. Lotus domino's data model is entirely different than that of oracle's data model. So, we are creating a relational table per Lotus notes form. I can access the views programmaticaly using lotusscript....

Why would some DLL functions fail on 64-bit Windows?

I'm trying to run some LotusScript code (very similar to Visual Basic) in Lotus Domino on Windows servers. The code calls some Windows API functions, and works fine on 32-bit Windows 2003 servers, but doesn't work on the one 64-bit server we've tried it on. Here's one of our external function declarations: Declare Function FindExecutab...