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
5
votes
4 answers

Calling Lotus Script Function From Lotus Formula

I need to call a lotus script function from Lotus Formula. The function returns a result. I do not just want to run a script which does not return any value. This is for Lotus Notes 7. Example LotusScript Functions: Function isName( name As…
Andrew
  • 51
  • 1
  • 2
5
votes
1 answer

SSLHandshakeException due to missing TLS cipher suites in Domino JVM

In my XPages application the following exception is raised when I try to open a HTTPS connection to another server which only allows TLSv1 and newer (no SSLv3): javax.net.ssl.SSLHandshakeException: No appropriate protocol Setting…
xpages-noob
  • 1,569
  • 1
  • 10
  • 37
5
votes
9 answers

Lotus Notes Diff Tool

Is there any diff tool for Lotus Notes which allows to compare scripts, design elements and documents?
Leyu
  • 2,687
  • 2
  • 23
  • 27
5
votes
1 answer

Richtext/CK editor is not working on Android

I recently noticed that the standard richtext editor in xpages is not working on Android devices. I have made a simple xpage with a single richtext field. When I view the page in iPhone on safari it works fine and also in chrome on Pc. But if I…
Thomas Adrian
  • 3,543
  • 6
  • 32
  • 62
5
votes
1 answer

I am trying to use PDFbox on the IBM Domino server, getting NoClassDefFoundError

I can run my IBM Notes agent locally without error, however when I run the agent on the server I get the following error. LS2J Error: Threw java.lang.NoClassDefFoundError: org.apache.pdfbox.pdmodel.PDDocument in procedure GETTEMPLATE, line 79 My…
PN03
  • 85
  • 9
5
votes
6 answers

What's wrong with Lotus Notes / Lotus Domino

I have a client who is using Lotus Domino for their web application/server platform. The client has two "web developers" who are more comfortable with Lotus Domino than more mainstream tools and technologies and are not enthusiastic about making a…
Anthony Gatlin
  • 4,407
  • 5
  • 37
  • 53
5
votes
1 answer

Jquery in XPages not working properly

I have an xpage and i have added jquery as script resource in it. Then i added some controls (edit,computed,output script with jquery function) and i am trying something dummy. Look at my xpage below:
mike_x_
  • 1,900
  • 3
  • 35
  • 69
5
votes
3 answers

Is a COMException of 0x80040154 always 'Class not registered'?

Does a System.Runtime.InteropServices.COMException of 0x80040154 always mean that the class isn't registered? I'm getting a COMException which says "Retrieving the COM class factory for component with CLSID {29131539-2EED-1069-BF5D-00DD011186B7}…
ssg31415926
  • 1,037
  • 2
  • 13
  • 21
5
votes
1 answer

How to implement "continue=false" in Xpages events

This is a rather generic question, but I'll try to be as precise as possible: quite often I'm asked by customers for proper implementations of LotusScript's continue = false in Notes' Query* events. One quite common situation is a form's QueryOpen…
Lothar Mueller
  • 2,528
  • 1
  • 16
  • 29
5
votes
2 answers

Caching of CSS and JS resources in XPages when "use runtime optimized javascript and css resources"

In XPages "use runtime optimized javascript and css resources" is a really cool feature because it joins all js files in just a file and all css files in just a css file. However I noticed that the joined files are not cached (they always return…
Johann Echavarria
  • 9,695
  • 4
  • 26
  • 32
5
votes
2 answers

How to build a control programmatically?

I have custom control written in Java. For the sake of simplicity lets assume that it looks like this: public class HelloworldControl extends UIComponentBase { @Override public void decode(FacesContext context) { String cid =…
W_K
  • 868
  • 4
  • 9
5
votes
6 answers

Lotusscript: From address when sending email as web user

I have a lotus-script agent which runs as Web User since I need to know who the current user is and process information accordingly. The problem is that when sending a email in this agent the From email address shows the web user email address…
pipalia
  • 911
  • 1
  • 12
  • 46
4
votes
1 answer

Upgrading Lotus Domino from 8.5.2 to 8.5.3, custom template broken

I have a custom template that is deployed on Domino servers and used by customers for their mail boxes. The hierarchy is like this: StdRMail85 | Custom Template | User Mailfile This template has worked since version Lotus Notes/Domino 6.5…
Corv1nus
  • 4,523
  • 1
  • 26
  • 37
4
votes
1 answer

Lotus Domino: After changing TYPE of a field, Full Text Search won't work for this field

My problem: I can't Full text search a view with the syntax [field_name] = text_value. Not in lotus Script nor in the "search the view" in the client. Additional information: When searching/More/By field / selecting my field, I get a combo box with…
Emmanuel Gleizer
  • 1,990
  • 16
  • 26
4
votes
5 answers

How do I connect an SQL database to Lotus Domino Designer?

I am creating a Lotus Notes application which has to have dynamic combo boxes. The choices for the combo boxes need to be retrieved by selecting from a SQL database. I am new to Lotus Notes / Domino, I would love to know how to connect my SQL…