I’m looking for some advice/help on calling a java program from the notes client.Note that I have NO java skillz so I don’t know if what I’m asking for is possible.
One of our externally supplied apps takes a file in a proprietary format and converts it to an XML format.
It is called as a DOS in the following way.
“c:\convert input_file output_file”.
Inside the batch file, two environment variables are set “CLASSDIR” and “CLASSPATH” and then the command:
“java org.app.readfile %1 %2”
CLASSDIR points to a file: converter.jar.
So far I’ve worked out that “converter.jar” is some kind of library and that java org.app.readfile %1 %2 is the function that takes two parameters.
So, my question is, it possible to run this from the notes client without involving DOS?
Can I load the library and call the function directly from Notes?
I’ve tried to get the library into Notes but I’m not sure where to go from there. Any help greatly appreciated.