Questions tagged [ibm-domino]
43 questions
0
votes
0 answers
Load CSS files instead of inline css for verse on prem customizations
We need to customize IBM Verse on prem for our corporate design. The documentation show how to add customized inline css. But that's not maintainable for larger customizations. I want to load css files, that could be generated by sass for keeping…

Daniel
- 968
- 3
- 13
- 32
0
votes
2 answers
Lotus Domino Designer - Java Log class: openAgentLog not working
After running the code below, I cannot find the word "Action One" in the log under log.nsf, does anyone know what is the problem?
import lotus.domino.*;
public class JavaAgent extends AgentBase {
public void NotesMain() {
try {
Session…

Charles Yeung
- 38,347
- 30
- 90
- 130
0
votes
2 answers
Lotus script: How to fix error "91 Object variable not set in FUNCTIONNAME(Object variable not set)"
The code when run manually (right click and run) it works perfectly, but the issue arises when it is automated using schedule.
When automated the code runs fine but right at the end of running the code it fails with the above error message.
The code…

Samuel Omopariola
- 153
- 11
0
votes
1 answer
Agent called multiple times at the same time executing the same code
I have a Java agents which generates documents. I also give these document a custom unique follow number, starting at 1 and increment +1 every time. I have a view where I get the last number, I take this number and increment it with one. So whenever…

Nuri Ensing
- 1,899
- 1
- 19
- 42
0
votes
0 answers
Creating XML form in Lotus with and getting fields filled from different documents
The situation which I have is as follows:
These are the documents which I have in Lotus:
-Order
-Orderlines
In the document Orderlines I store the document ID of the Order document so that I can relate the orderlines with the order.
The orderlines…

Nuri Ensing
- 1,899
- 1
- 19
- 42
0
votes
1 answer
Can I use a Domino server for proxying HTTPS requests?
Using a Domino XWork Server (v9.0.1FP9), I would like to forward/proxy HTTPS requests of certain paths to other ports on the same server. For example: If someone requests
https://www.example.com/app1/*
he should be served with the response…

xpages-noob
- 1,569
- 1
- 10
- 37
0
votes
1 answer
Replication/save conflicts of documents
I have two servers lets call them server A and B. In A, I have order documents and B is a replicate of A (A replicates to B every minute). In B, I have a java agent which is scheduled every 5 minutes and is sending a document to a website but also…

Nuri Ensing
- 1,899
- 1
- 19
- 42
0
votes
0 answers
authentication for wkhtmltopdf on domino server
I am trying to login on the domino server using --custom-header and http username without success:
wkhtmltopdf --custom-header Username Mxxxx --custom-header Password xxxxxxx http://server/database.nsf/view/B067E9B04AC2B3FAC225835C004D211B…

mhd196
- 1
- 1
0
votes
1 answer
Does .remove on a document object result in a null?
In my java webagent I create a Document object.
For example
NotesDocument document = ...;
later I use remove on this object:
document.remove(true);
Afterwards I want to check if document is null so any functions which normally operates on that…

Nuri Ensing
- 1,899
- 1
- 19
- 42
0
votes
0 answers
Notes Client skipping numbers on '# in View' column
I am having a problem with IBM Notes version 9.0.1 where i have a view containing a '# in View' column as the first column. The view, as seen on the client, is skipping some numbers (on the printed view it skips the number 6151), while displaying…

Enio Moura
- 1
- 2
-1
votes
1 answer
Is IBM\HCL Domino Server FP 9.0.1 compatible with Windows Server 2016?
I googled this question before asking here and I can't find any there.
Anyone here tried installing HCL\IBM Domino Server FP 9.0.1 using Windows Server 2016? Will it run without any problem?
Thanks.

Tracer1
- 11
- 3
-2
votes
1 answer
What are the software need be installed to connect ibm lotus and domino notes using Java?
I am totally new to IBM lotus and domino notes. I just want to know how to connect IBM domino using java and what are the software I should have installed in my machine.
I gone through many websites but I didn't get any proper tutorial websites.…

Sangeetharaj
- 169
- 3
- 14
-2
votes
1 answer
how can I notify other adresse notes?
I'm using IBM Designer 9.0, so I have a problem with sending notifications to notebooks.
I test this code which I find on the internet but it does not work.
Sub CreateMailNotification(doc As notesdocument, strSendTo As Variant, strSubject As String,…

NAFES
- 1
- 2