Java applet stopped working after update to JRE 7u21
Asked Answered
B

5

13

My java applet stopped working once JRE was updated to 7u21.

Short summary:

  • The Exceptions I get are: netscape.javascript.JSException and
    java.lang.NoClassDefFoundError. the applet worked fine until JRE 7u21.

  • The applet is embedded in a web page using Oracle's DeployJava.js.

  • The applet is signed, it uses LiveConnect to fire events, it access USB and serial ports through JNI, it uses code from multiple JAR files.

  • The failure happens on all desktop browsers tested (Firefox, chrome, IE8/9 and Safari on Mac).

Details:

  • I have a java applet that allows my website to communicate with a USB device.

  • The applet has been working well for the past year.

  • Once JRE7 update 21 was released - the applet stopped working.

  • The applet is hosted in a web page (ASP.NET) using Oracle's DeployJava.js library.

  • It uses LiveConnect to raise events back to my javascript code.

The first problem I had on JRE 7u21 was an exception on the first attempt to raise an event through LiveConnect:

netscape.javascript.JSException: JavaScript error while calling "_notify"
at sun.plugin2.main.client.MessagePassingJSObject.newJSException(Unknown Source)
at sun.plugin2.main.client.MessagePassingJSObject.waitForReply(Unknown Source)
at sun.plugin2.main.client.MessagePassingJSObject.call(Unknown Source)
at <myapplet>.fireJavascriptEvent(Unknown Source)
at <myapplet>$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at com.asec.easypark.applets.HomeloadingApplet.start(Unknown Source)
at com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter.start(Unknown Source)
at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)

in order to mitigate this problem I added the following line to 'manifest' section in the ant script for the applet:

attribute name="Trusted-Library" value="true" 

I built the applet using JDK 7u21 and it seemed to help:

after that I started getting another error - so I believe this one was solved, but it may have caused the next problem.

the second problem is this: the applet is calling code from several JAR files. on the first call to code in another JAR file (not that of the applet) fails with the following exception:

**java.lang.NoClassDefFoundError**: com/codeminders/hidapi/HIDManager
    at <PackageInSecondJar>.communication.HIDTransmitter.open(Unknown Source)
    at <PackageInSecondJar>.communication.HIDTransmitterSearcher.find(Unknown Source)
    at <PackageInSecondJar>.communication.CompositeTransmitterSearcher.find(Unknown Source)
    at <PackageInAppletJar>.communication.AppletCommunicationBroker.setupDeviceProxy(Unknown Source)
    at <PackageInAppletJar>.communication.AppletCommunicationBroker.setup(Unknown Source)
    at <PackageInAppletJar>.<TheApplet>$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at <PackageInAppletJar>.<TheApplet>.start(Unknown Source)
    at com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter.start(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)

I already tried the following measures - without success:

  • add HTTP header 'Cache-Control' = 'no-cache'

  • add HTTP header 'Cache-Control' = 'no-cache, no-store, must-revalidate'

  • use latest DeployJava.js from http://java.com/js/deployJava.txt (after renaming to .js)

The applet already has these features:

  • mark security ‘all-permissions’ in jnlp

  • the main JAR is signed with certificate from an external CA

  • the applet code is running inside a AccessController.doPrivileged block.

I'm a java newbie so please don't disregard the obvious solutions...

Thanks in advance for your help,

Guy.

Brittaneybrittani answered 18/4, 2013 at 13:29 Comment(6)
possible duplicate of Cannot launch applet using Java 7u21Partly
I found this discussion, also see the one linked from there, which contains a possible solution, and see if that applies to you and helps?Samy
Thx. I saw it and it is actually the source of the first fix I did. but now I have the second problem described above (java.lang.NoClassDefFoundError exception) which is either unrelated or caused by that fix.Brittaneybrittani
It's not really a duplicate: 'Cannot launch applet using Java 7u21' describes an applet that DOES work in a web page, with a different exception, and without a solution.Brittaneybrittani
Solved: after removing both 'Trusted-Library' and 'Trusted-Only' attributes from the <manifest> section in build.xml - the applet started working, but with a new security alert. hopefully I will be able to get rid of the alert by signing all the JARs used by the applet.Brittaneybrittani
@Brittaneybrittani Post it as an answer and mark question solvedBrentwood
W
1

Bailey S is right.Make sure that java can see that jar file.If you're using linux,set the path in /etc/environment path variable or in windows,just right click on my computer,go to properties,environment variables and set path there

Winou answered 7/6, 2013 at 18:20 Comment(0)
U
1

Deploying applets is getting significantly harder as Oracle fixes security holes.

You mentioned your applet is signed -- are all of the JARs signed? There are several new attributes you'll need in your manifest files to get this to work.

Overview here: http://www.oracle.com/technetwork/java/javase/tech/java-code-signing-1915323.html

and you'll need this one in particular to get the manifest sorted out: http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/manifest.html

If you use some JARs that aren't signed, or that aren't all signed by you, you'll need the details here as well: http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/mixed_code.html

Unpracticed answered 8/11, 2013 at 21:14 Comment(0)
S
1

It's not possible to set the attributes of an applet to work both on versions after 7.0.21 and below it.

Trusted-Library: true

attribute works for the ones below 7.0.21 which causes a security dialog to be displayed (and most probably your code to be blocked) after 7.0.21. If you only put

Caller-Allowable-Codebase: *.yourdomain.com

to your manifest file, it starts to work fine with the versions after 7.0.21 but this time it stops with the versions below 7.0.21. This is a huge mess.

However they've fixed this ill behaviour with the latest version (7.0.51). So I suggest to use both attributes (Trusted-Library and Caller-Allowable-Codebase) which will work for Java 6 and 7.0.51. I don't think there is a solution for the ones between 7.0.21 and 7.0.45. (I do not support them, we ask our clients to upgrade to 7.0.51).

https://blogs.oracle.com/java-platform-group/entry/7u45_caller_allowable_codebase_and

Septima answered 31/1, 2014 at 18:34 Comment(0)
H
0

I do not know DeploJava.js bu the problem ıs clearly a classpath problem.

As a method, we define all third party libraries in archive tag. DeploJava.js may have similar properties.

<APPLET   codebase="./"  code="AppletMainClass"   archive="printer_applet.jar, pdf-renderer.jar, library3.jar">
Hanker answered 28/5, 2013 at 13:57 Comment(0)
C
0

The same happened with me (in java environment) which ruined my whole day, netscape's JSObject is present in both jre's plugin.jar and jfxrt.jar, you'd need to exclude one. if you need a js call, i think you'd need plugin.jar jre 6 do not contain latest jfxrt.jar (JavaFX related solution for applets in web)so it used to work in jre6

also , do not use trusted library unless you want to sign individual jars separately. Hope this helps - Chaithanya

Cindycine answered 6/11, 2014 at 19:30 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.