Debugging Tips

Hints and tips on the usage of the JAddin framework

Common Error Messages

Error Message

Possible Reason

RunJava: Can't find class AddinName lotus/notes/addins/jaddin/AddinName in the classpath. Class names are case-sensitive.

The RunJava task was unable to load the class. Make sure that it is written with exact upper and lower case characters and it can be found by the RunJava class loader

JAddin: Unable to load Java class AddinName

The JAddin framework was unable to load the application class. Make sure that it is written with exact upper and lower case characters.

RunJava: Can't find stopAddin method for class AddinName.

The application class must be loaded thru the JAddin framework and not directly from RunJava. Use the command Load RunJava JAddin AddinName to start your application.

RunJava JVM: java.lang.NoClassDefFoundError: AddinName (wrong name: addinname)

The user class name in the command and the internal name do not match. Most likely you have not typed the name with correct upper and lower case characters.

Out of memory

All Java add-ins execute in a single Java Virtual Machine (JVM) in RunJava. The Domino Notes.Ini parameter JavaMaxHeapSize=xxxxMB may be used to increase the heap space.

HCL Domino Statistics

During execution, the JAddin maintains statistics and status information. They can be displayed with the Show Stat AddinName command:

> Show Stat HelloWorld
  HelloWorld.Domino.Platform = 6.2 (Windows 8)
  HelloWorld.Domino.Version = Release 14.5|June 06, 2025 (Windows/64)
  HelloWorld.JAddin.StartedTime = 2025-06-21T12:03:39Z
  HelloWorld.JAddin.VersionDate = 2025-06-21
  HelloWorld.JAddin.VersionNumber = 2.2.1
  HelloWorld.JVM.HeapLimitKB = 262'144
  HelloWorld.JVM.HeapUsedKB = 20'775
  HelloWorld.JVM.Version = 21.0.6 (IBM Corporation)
  8 statistics found

Console Help Command

The framework supports a number of special commands:

Debugging

For a detailed problem determination, you may use the built-in debugging features.

Enable/Disable Debug

Domino Console Command

Description

Load RunJava JAddin AddinName Debug!

Start add-in in debug mode

Tell AddinName Debug!

Start the debug mode while the add-in is running

Tell AddinName NoDebug!

Stop the debug mode while the add-in is running

Debug Output

The debug output is written to the HCL Domino console and includes the name of the Java method with the source line number issuing the message.

Frequently Asked Questions

Q: How do I develop my JAddin project in Eclipse? A: Ensure that you include the two JAddin framework class files and the notes.jar file (installed with HCL Notes or HCL Domino) as external libraries in your Eclipse project.

Q: What is the heartbeat in JAddin? A: The main thread in JAddin is triggered every 15 seconds to perform internal housekeeping tasks. One of these tasks monitors Java heap usage to help prevent out-of-memory errors. It also checks whether the user thread has terminated unexpectedly.

Q: I have copied a new version of my add-in to the server, but it does not become active during application startup. Why? A: The RunJava task caches Java classes in memory. To reload your updated class file, you must terminate all other RunJava tasks—effectively stopping RunJava itself—before restarting it.

Last updated

Was this helpful?