When trying to invoke a JNLP application with Open Web start , I get this stack trace of errors.
net.adoptopenjdk.icedteaweb.shaded.mozilla.javascript.EcmaError: ReferenceError: "java" is not defined. (internal#105) at net.adoptopenjdk.icedteaweb.shaded.mozilla.javascript.ScriptRuntime.constructError(ScriptRuntime.java:3557) at net.adoptopenjdk.icedteaweb.shaded.mozilla.javascript.ScriptRuntime.constructError(ScriptRuntime.java:3535) at net.adoptopenjdk.icedteaweb.shaded.mozilla.javascript.ScriptRuntime.notFoundError(ScriptRuntime.java:3620) at net.adoptopenjdk.icedteaweb.shaded.mozilla.javascript.ScriptRuntime.name(ScriptRuntime.java:1652) at net.adoptopenjdk.icedteaweb.shaded.mozilla.javascript.Interpreter.interpretLoop(Interpreter.java:3413) at script.dnsResolve(internal:105) at script.getResolvedIp(http://uhic.ca.edu/toodeepregression3.pac:569) at script.FindProxyForURL(http://uhic.ca.edu/toodeepregression3.pac:62)
The script at line 569 is.. internalResolvedIp = dnsResolve(host)
if (
host
) {
// If the user has typed an IP address in the address bar, take it
// as it is.
var isIpV4Address = /^(\d+.){3}\d+$/;
var isIpV6Address = /^\[(.*)\]$/;
if (
isIpV4Address.test(host)
) {
internalResolvedIp = host;
} else {
var matches = host.match(isIpV6Address);
if (
matches && matches.length === 2
) {
// Get the address between the square brackets
internalResolvedIp = matches[1];
} else if (
isDnsResolvingAllowed
) {
****internalResolvedIp = dnsResolve(host);****
}
}
}
I am not sure what this error is . I have looked at the Open web start logs as well . I have searched far and wide in the itnernet world but I barely get any hits for this error.