Hi,
I have an NSF database with some forms. I’d like to move a lot of the functionality to external jar files.
For example. I have one form, that when a button is pressed some action is run as follows:
@Command( [RunAgent] ; “MyDriver” )
Then in my SharedCode\Agents\MyDriver I have my code there. I have tried make MyDriver import an external jar file, but that seems like a static import. That is, if I import it abc.jar, and then change abc.jar, the version within lotus notes does not change.
I am thinking I need to change it at the form level.
@Command( [RunAgent] ; “myJavaJar.jar/MyClass” )
where myJavaJar contains a MyClass that extends AgentBase.
I suspect I will just have to do:
@Command( [RunAgent] ; “MyClass” )
and have myJavaJar in the Lotus notes java path?
Thanks for any help.