How to call javascript & jsp in Progress 4 GL

Marian EDU

Member
Not sure what are you after here but I'll venture an answer anyway...

You can't call JavaScript or JSP (Java) code from Progress virtual machine as it has nothing to do with JS engine or JVM, but since you mention JSP then your applet will most probably run in a web application environment like Tomcat/JBoss and in this case the best thing you can do is to 'call' it from Progress by making a HTTP request on it (either use a command line like curl or plain http get request using sockets, think there are some samples on oehive for the later).

Otherwise you can call Java code from Progress is you wrap that code in a C/C++ library and call Java code from there using JNI, what exactly do you want to achieve there?
 
Top