Questions tagged [lotus-notes]

Tag for programming questions related to Lotus Notes & Domino

It is appropriate to also include specific language tags when asking questions about communicating with Lotus Notes from those languages, for example using .NET or VBA to send an email, or to pull data from SQL into Notes.

3497 questions
4
votes
1 answer

Clear Replication History programmatically

I'm looking for a way to clear "Replication History" programmatically (typically we do it manually if needed, see image below) I have checked LS and Java classes and did not found anything useful. I will try to find something Notes C API database…
Dmytro Pastovenskyi
  • 5,240
  • 5
  • 37
  • 56
4
votes
1 answer

VB macro to send mail without opening Lotus notes

I want to send a mail with a vbscript without opening Lotus Notes UI. I managed to write a script that allows to send email with attachments and everything works fine. However the application is launched when I run the macro and I want it to work…
Idrees Samim
  • 463
  • 5
  • 15
4
votes
10 answers

How do we get around the Lotus Notes 60 Gb database barrier

Are there ways to get around the upper database size limit on Notes databases? We are compacting a database that is still approaching 60 gigs in size. Thank you very much if you can offer a suggestion.
Todd
  • 313
  • 1
  • 4
  • 17
4
votes
1 answer

Domino Data Service - get document(s) by searching with field value

I tried everything, but it woudn't work, I knew there are some similar questions out there with answers, but the questions were asked 5 years ago and aren't up to date and arent't working. My Question is: How can I search for field values by using…
4
votes
4 answers

Call to getEmbeddedObjects(); (Domino Server API) returns wrong results

The Domino server API getEmbeddedObjects(); returns the wrong result (zero) when a mail containing an attachment (as embedded object) is sent from the script. Though an attachment is sent as an EmbeddedOBject, getEmbeddedObjects(); returns…
Rajath
  • 215
  • 5
  • 13
4
votes
1 answer

java.security.AccessControlException: Access denied ("java.net.URLPermission" "https://example.com" "*:*")

I'm trying to use Java to talk to the ibm connections API through urlConnection with the following code String url = "https://example.com"; URL myUrl = new URL(url); URLConnection urlCon = myUrl.openConnection(); urlCon.setRequestProperty("Method",…
4
votes
2 answers

Flying Saucer in Lotus Notes

I was trying to convert simple XHTML-files to PDF, and used Flying Saucer and iText to do so. It worked without problems in Java, however, when I tried to make a Lotus Notes agent with the same code, I got an exception I am unsure how to deal…
jmhajek
  • 113
  • 1
  • 2
  • 6
4
votes
4 answers

How do I select all documents from the last 7 days?

I have a view selection formula SELECT @If( @Date(@Now) = @Date(@Created); @All; @False) and I want it to select all documents from the past 7 days rather than just today's.
Todd
  • 313
  • 1
  • 4
  • 17
4
votes
1 answer

Get table names from lotus notes database

I'm trying to write a program that would dump a whole lotus notes database to a file via NotesSQL driver. I'm connecting via jdbc:odbc and have I can execute selects and get data from Lotus notes database here is the code try { …
Gabriel
  • 1,820
  • 2
  • 23
  • 31
4
votes
2 answers

Python sys.argv[1:] not picking up command line options

Update/Solution: the answer is below, from Zack. The problem was, indeed, DOS line endings on the script file itself, clenotes.cmd. Since I futzed with the various files so much, I deleted the whole directory and then re-downloaded a fresh copy from…
Hendy
  • 10,182
  • 15
  • 65
  • 71
4
votes
2 answers

LotusScript ArrayUnique function doesn't seem to work with date/time arrays

I've tried to figure this issue out on my own, but perhaps there is something I am misunderstanding about the way ArrayUnique works. Here is some sample LotusScript code: 'Let's test some dates dateOne = CDat("12/16/2010") dateTwo =…
Pandincus
  • 9,506
  • 9
  • 43
  • 61
4
votes
4 answers

How can I use Perl to open the Inbox through the Lotus Notes API?

I am able to open Lotus notes api using Perl, without errors, also I can get list of views that includes Inbox, but when I try to read messages from that view it appears empty? What might I be doing wrong? (in fact it seems like something might of…
Ville M
  • 2,009
  • 7
  • 30
  • 45
4
votes
1 answer

How to read excel file from browser?

I want to validate some of the data of an excel file from browser. I can achieve it by the following, Save excel in temporary notes document and extract into server hard disk/ Shared path and I can validate the excel. My question is, Is there any…
Ramkumar
  • 874
  • 11
  • 27
4
votes
0 answers

Domino Designer and Source Tree (Overwrite issue)

We have been working with a combination of Notes 8.5.3 and Source Tree since more than a year and things were moving smoothly, however, recently, after an upgrade to 9.0, what we have observed is that, the designer project doesn't completely sync…
Chintan Parekh
  • 1,101
  • 1
  • 12
  • 31
4
votes
2 answers

iCal (.ics) file not recognized by IBM (Lotus) Notes

I'm generating ICS files from a PHP application and emailing them as attachments (via SendGrid api). The ICS file works fine with Gmail web mail, and with an iPhone. However, IBM Notes does not recognize them as meeting invites. Notes shows the…
Chris Cober
  • 101
  • 9