Questions tagged [domino-appdev-pack]

Use this tag to mark questions related to the Domino AppDev Pack. This suite of components includes the Proton Addin Task, The Domino-DB node module, and the IAM service.

30 questions
0
votes
3 answers

Domino AppDev Pack 1.0.13, IAM Server setup failed, failed to sign the certificate by self-signed CA

I don't have the CA signed certificate for local server: serv.org.com. Therefore, I follow the steps to create the self-signed certificate for IAM server. openssl genrsa -des3 -out iamserver.key 4096 openssl req -new -key iamserver.key -out…
Cora.Kn.Kwok
  • 71
  • 1
  • 1
  • 6
0
votes
1 answer

com.hcl.domino.db.model.BulkOperationException: Internal error while readDocuments

I was using domino appdev pack 1.0.7 Java API in order to read document from database. Currently trying only the sample code present in the Domino AppDev Pack. Here is the code: Server server = new Server('testappdev.com.tw', 5000, new…
ZN Hung
  • 3
  • 1
0
votes
2 answers

PROTON: Handshake failed

Get this error on our Domino server log: PROTON: Handshake failed with fatal error SSL_ERROR_SSL: error:100000f7:SSL routines:OPENSSL_internal:WRONG_VERSION_NUMBER.…
Mike Zens
  • 89
  • 10
0
votes
1 answer

Can secondary addressbook be used?

We are in the process of upgrading to Domino 11.0.1 and using HCL's AppDev Pack 1.0.6. In our cuurnet website (Domino 9.0.1) we use an auxillary Domino addressbook to store our users login information and we do not use or create user's id files…
Mike Zens
  • 89
  • 10
0
votes
1 answer

Add attachments in a rich text dokument

I am currently trying to add an attachment to a rich text field. I try to do this, so that I can replicate the current workflow, in which the user edits the document, selects the rich text field and adds the attachment with the attachment-button.…
Vomste
  • 13
  • 3
0
votes
1 answer

AgentContext not found/null

I want to run a Java agent from node.js via the proton interface. Sadly I can't get the Agent Context to work Node.js Code async function callEvalAgent(query) { const agent = await db.useAgent({ name: "search" }); console.log("got the agent"); …
J Mers
  • 67
  • 6
0
votes
1 answer

domino AppDev Pack Retrieve RichText

I was using domino appdev pack 1.0.4 in order to retrieve richtext content, and I used the example code that HCL provides to read rich text, which would return buffer format and write the buffer into a file. But I use Note to open the file, it…
0
votes
1 answer

HCL Domino AppDevPack - Problem with writing Rich Text

I use the code proposed as an example in the documentation for Domino AppDev Pack 1.0.4 , the only difference is the reading of a text file (body.txt) as a buffer, this file containing only simple long text (40Ko). When it is executed, the document…
0
votes
1 answer

HCL Domino AppDevPack - Problem with write attachments other than .txt

I use this code (suppose the connection to the database has already been made) : const fs = require('fs'); let docUnid = "F09C0DB42276F208C1258513005722D1"; let sFilename = fileSamplePdf.pdf; // !!! Does not work for reading after attachment !!! //…
0
votes
2 answers

Access Rich Text fields

I need to access a rich text field inside a document, however, if I read the documents with the correct field selected, I don't receive the value of the field in the database response. How can I retrieve the data of a rich text field?
Vomste
  • 13
  • 3
0
votes
2 answers

HCL Domino AppDevPack - writeAttachments

The new V1.0.2 has new capabilities to upload attachments to a domino document. My upload code is successful as long a I use files <= 48KB. As soon as I try to upload a larger file, the upload takes place, in the domino document I find an attachment…
0
votes
1 answer

Getting "UnhandledPromiseRejectionWarning: Error" in quick start and in example code for bulkReadDocuments

Using the Quick Start from the Domino AppDev Pack documentation, I get an error: (node:46496) UnhandledPromiseRejectionWarning: Error at new DominoDbError…
0
votes
1 answer

Domino10 appDevPack: "Error: Cannot find module '@domino/domino-db'"

Just installed the latest Domino 10.0.1 Server on my linux machine and also installed and configured the latest proton package. As far as I can tell it's all running fine. Next I plan to try my first Node-RED flow using the new Domino10 nodes. So I…
0
votes
1 answer

Porting application Domino 9.0.1 Xpages to Domino 10 with new approach

I have dozens of applications written in XPAGES (Domino 9.0.1). From the Webinar on Domino V10 seen a few weeks ago there has been a lot of talk about the new approach to development. The new approach is very similar to the MEAN development stack.…
-1
votes
1 answer

Domino AppDev Pack 1.0.13, failed to startup iam services

Failed to startup domino-iam-services. According to the tutorial https://doc.cwpcollaboration.com/appdevpack/docs/en/iam_setup_prepare_part.html I have installed the database adpconfig.nsf for HCL Domino AppDev Pack Configuration. At the access…
Cora.Kn.Kwok
  • 71
  • 1
  • 1
  • 6
1
2