lotus-notes

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

How to differentiate "documents" of Folders created by user in Lotus Notes?

I am able to access User Made Folder as: NotesView folder = _notesDatabase.GetView(folderName); NotesDocument folderDoc = folder.GetFirstDocument(); But problem is that it can consist of "Mail","Calendar" and "To Do". I am not able to differentiate them. Any ideas? ...

Managing Lotus Notes Mail Format using C#

Hi, I am accessing mail body and fetching it in another mail. But i am not getting original format of previous mail in new mail. Problem i am facing in this situation are: Not getting images in destination mail. Font is also varying. I am accessing mail body as follows: NotesRichTextItem rtItem = (NotesRichTextItem)docInbox.GetFi...

How to check name of Domino Server to which lotus notes is configured? using C#

Hi, I am trying to login Domino server. For that i am taking Lotus Notes Password and Domino Server Name from user. if (notesPassword == "" && serverName == "") { MessageBox.Show("Please enter the server name !! "); return; } else { if (connectToDomino(notesPassword, serverName)) { MessageBox.Show("Connection Esta...

Consideration DECS vs SSIS?

I need solution to pump data from Lotus Notes to SqlServer. Data will be transfered in 2 modes Archive data transfer Current data transfer Availability of data in Sql is not critical, data is used for reports. Reports could be created daily, weekly or monthly. I am considering to choose from one of those solutions: DESC and SSIS. Co...

Plugin inside Sametime with Lotus Notes Classess - The Whole Story

It's gonna be a long read so Thanks for being patient :). I have been trying to develop a plugin to be executed inside Lotus Sametime. The idea of this plugin is to extract the calendar entries for a given date and then display it in sametime. Simple isn't it, i thought so too. Apparently I was wrong and grossly misunderstood the JVM ve...

"RepeatForUnit" item missing in Calender entry?

Hi, I am accessing RepeatForUnit to manage "Repeats" in Lotus Notes. String RepeatForUnit = (string)((object[])docCalendarDoc.GetItemValue("RepeatForUnit"))[0]; Initially i was getting "D" for Daily event, "W" for Weekly and "Y" for Yearly. But now properties field not showing any of this value even after adding Repeat in calend...

Managing attachmnet files with same name and different content.

Hi, I am extracting attachment from Inbox,Send,Drafts e.t.c. mails. And saving them in a folder. Using below logic: http://stackoverflow.com/questions/1361695/how-to-access-attachments-from-notes-mail But problem i am facing here is. Attachment having same type and name but different content. In current situation it is replacing old ...

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

Image does not appear in Lotus Notes

Got lotus notes version 8.5. I need it to show html img properly. <a target='_blank' href='http://www.foo.com'alt="external-link"&gt;&lt;img class="document-url-image" src="http://foo.com/images/ico_globe.png" /></a> Any ideas why i got red box instead of image? Here's another one (with asp.net handler usage): <a href="http://re...

Check whether NSF File is Password Protected or Not using C#.Suggest some dll to access NSF file without Domino Server installed.

Hi, I want to access NSF File using C#. I am using Lotus Notes 8.5 ( Not using Domino server ) I am putting set of nsf files in a list.But before adding it in into list i want to check whether it is password protected or not. How can i check that? And how can i get password value? Suggest me dll file which i can i use in current cont...

how to code for mailing in lotus notes

hi i wrote code for mailing it gives me error "Cannot create ActiveX component." . how to resolve it. i m new for lotus notes plz reply ...

.NET and Lotus Notes Interop.

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

Move Database To Another Folder

How can I relocate database from one folder to another on the same server while the server is running? ...

Encrypting and Decrypting NSF file using C#.

Hi, I want to Check whether a NSF file is Encrypted or not (using C#). And if it Encrypted i want to Decrypt those NSF Files and Save them on different path. Currently i am using " Domino.dll". ...

Notes database to MySQL (with CF?) / or how to get the NSF-datastructure

hi, I have a commercial ColdFusion application, running on a MySQL database. A possible new client has approached me, they have been working in a Lotus Notes environment (and their own database) for many years now. Ofcourse they want to migrate their data to my application, before making the move. I'm trying to get a grip on how to get...

How to check Mail Read or Unread Property (Lotus Notes) using C#.

Hi, I want to check mail read and unread property using C#. i.e want to check whether mail is read or not. (using Domino.dll) ...

Lotus-Notes: Reset Radiogroup via Javascript

I'm currently working on a Lotus Notes solution. We're just using Web forms so client side operations are done via Javascript. What I want to accomplish is to reset a Group of Radio Buttons. There are 3 possibilities and I want to choose none. (A 'none of them' possibility would be preferable, I know but we are required to reset them) ...

MS Access 2000: Is it possible to open a connection to query Lotus Notes?

Can I create either an ODBC connection or a connection string in VBA to get into a lotus notes database to pull data out of it? ...

Extracting email messages from a Lotus Notes NSF file using Java API

I'd like to use the Java API (Notes.jar), and I'm running a Windows box with Lotus Notes 8.5 installed. I know nothing about Lotus Notes, and I only need to do this one narrow task: extracting email messages from an NSF file. I want to be able to iterate through all the email messages, grab the metadata (From, To, Cc, etc) or the raw M...