LS2J and 'ClassNotFound' Exception

Posted by Tobias Mueller

Today I had to integrate a little selfwritten Java class to LotusScript code.

I decided to use the new LS2J ('LotusScript to Java') functionality.

I took a look at the designer help. There again. Don't use the examples.

In every example the Java class is loaded by

Set myClass = mySession.GetClass("Mortgage;")

Don't use the semicolon. It'll will throw a 'ClassNotFound' exception.

Post a comment