Questions tagged [lotus-domino]

Domino is the server component of HCL Software's collaboration offerings. A typical Domino server supports a variety of applications and protocols that clients can use to access those applications. Applications out-of-the-box include E-mail, Calendaring and many others. Custom applications can be created using the RAD development tool Domino Designer. Protocols supported are include HTTP, HTTPS, SMTP, POP3, IMAP, as well as the RPC protocol for Notes.

HCL Domino (formerly IBM Domino and Lotus Domino) is a server product that provides enterprise-grade e-mail, collaboration capabilities, and a custom application development platform.

For more information:

https://en.wikipedia.org/wiki/IBM_Notes

https://www.hcltechsw.com/wps/portal/products/domino/home/

2573 questions
4
votes
3 answers

.NET - Consuming HTTP services on (Domino) server with form based authentication

I am writing a utility in C# (.NET) which will use HTTP to request data from a Domino web server. However, this server uses form based authentication, not basic HTTP authentication. I am trying to find out how to code to do HTTP GETS/POSTS with a…
SAJ14SAJ
  • 1,698
  • 1
  • 13
  • 32
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
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
0 answers

Encryption with public key of Notes documents using XPages (Domino 9.0.1 FP8+)

Has anybody successfully encrypted Notes documents using public key encryption (item PublicEncryptionKeys) in XPages, which should be possible in IBM Domino 9.0.1 starting with Feature Pack 8 (FP8)? I got the secret key encryption (item…
4
votes
3 answers

Xpage with multiple forms and data sources create empty documents

I have a two simple forms (Form1 and Form2). They have only one field each (field1). I created two custom controls. They are identical except cc1 has data source defined as Form1 and cc2 has a data source of Form 2. Each custom control has one…
Csaba Kiss
  • 180
  • 1
  • 14
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
3 answers

Uploading a file via HTML to a Domino database

Hopefully someone will be able to assist. I am creating an online submission form in HTML, with the ability to add upload an attachment. The resulting data ends up in a Notes / Domino database. I have managed to get the HTML form working, with the…
SimonB
  • 41
  • 3
4
votes
1 answer

Unable to fix "Syntax error, 'for each' statements are only available if source level is 1.5"

I am writing a Java Agent which uses parameterized collection types and enhanced-for loops. Domino Designer 8.5.3 then tells me to change the project's compliance level to 1.5 in a quick-fix action. If I do that, the project rebuilds and nothing…
Pablo
  • 652
  • 6
  • 21
4
votes
2 answers

Importing Angular library into Lotus Domino db

I'm experimenting with using Angular and so am looking to import the standard library angular.min.js into a Domino database with Domino designer. However when I do this, I get zillions of javascript errors in the imported file. I have…
user2808054
  • 1,376
  • 1
  • 11
  • 19
4
votes
1 answer

Insert images / files inside Notes document using lotus.domino

I am trying to insert some inline image and inline attachment inside Notes document, using Rich Text format by lotus.domino package Java API, and send it. The code of inserting is as below. // Insertion by RichTextItem.embedObject() RichTextItem…
Nozomi
  • 41
  • 1
  • 3