Integration Problem between JavaScript and Oracle Forms 11g (11.1.2.2) with JRE 1.8 on client.
When we try to call a "Oracle Form" from JavaScript menu the application fails and generates the next error in the the Browser JavaScript console:
Liveconnect call for Applet ID 2 is not allowed in this JVM instance.
The JavaScript function used is:
function exec(event, payload){
document.forms_applet.raiseEvent(event, payload);
}
The integration works fine with JRE 1.6.
We use WHEN-CUSTOM-JAVASCRIPT-EVENT trigger to execute OPEN_FORMS from JavaScript menu throw the JavaScript function:
function exec(event, payload){
document.forms_applet.raiseEvent(event, payload);
}