Overcoming Domino's Agent Scheduling Limitations with JavaAddin  

By Dmytro Pastovenskyi | 10/30/23 2:16 AM | Development - Notes / Domino | Added by Roberto Boccadoro

If you're frustrated with Domino's limitations on scheduling agents to run more frequently than once every 5 minutes, you're not alone. As a programmer, you understand the need for flexibility and control in your applications. In this article, we'll discuss a practical solution: creating a JavaAddin for Domino that can trigger agents at shorter intervals, allowing you to gain more fine-grained control over your scheduled tasks.

Checking if database is encrypted with LotusScript (C API)  

By Dmytro Pastovenskyi | 4/8/21 9:24 AM | Development - Notes / Domino | Added by Andi Kress

Since it's not possible to identify encryption status and level using native LotusScript/Java classes here is a way to do that. The solution is based on Notes CAPI (within LotusScript) but it works for both Linux/Windows environment.

NotesRichText to HTML native within Domino 10  

By Dmytro Pastovenskyi | 2/27/20 12:57 AM | Development - Notes / Domino | Added by Andi Kress

Just realized that Domino 10+ came with possibility to convert RichTextItem to HTML almost in 1 line.

Rewrite URL with CloudFlare for Domino  

By Dmytro Pastovenskyi | 2/18/20 1:12 AM | Development - Notes / Domino | Added by Andi Kress

Years ago I created few solutions for Domino using DSAPI: 1. remove last slash in URL served by Domino. 2. rewrite URL. 3. better control over 404/500 error pages.

Formatting NotesDatetime as Java SimpleDateFormat  

By Dmytro Pastovenskyi | 9/3/19 8:16 AM | Development - Notes / Domino | Added by John Oldenburger

Recently I had to made proper formatting of NotesDateTime object (using LotusScript) with respect to different locale. I had written a cover in LS2J for Java SimpleDateFormat class that works independently (without Java library), so copy/paste and go on. Here is an example how it works.