Elwhis
Elwhis

Reputation: 1261

Java applet stopped working in Firefox, in IE it works fine

My java applet stopped working in firefox, but it works fine in IE. Since there is increasing number of people having the same issue, I suppose the issue might have been caused by new java update.

I have checked the release notes and tried proposed workaround, but it didn't help.

All the applet does in Firefox is load and then immediatelly starts teardown, as you can see from the following log:

basic: Applet initialized
basic: Starting applet
basic: completed perf rollup
basic: Applet made visible
basic: Applet started
basic: Told clients applet is started
basic: Starting applet teardown
basic: Finished applet teardown
basic: Removed progress listener: sun.plugin.util.ProgressMonitorAdapter@195f30
basic: PluginMain.unregisterApplet: 1 from mananger sun.plugin2.applet.Applet2Manager@1289261

Any ideas what might help here?

Upvotes: 4

Views: 2456

Answers (4)

Amit Mahajan
Amit Mahajan

Reputation: 915

Update your firefox settings to allow applets, update correct java plugins and permissions inside firefox. Mostly applet not loading issue seems to be permission related.

Upvotes: 1

Anil Chauhan
Anil Chauhan

Reputation: 21

firefox is not providing support to applet plug-in.See link https://support.mozilla.org/en-US/kb/use-java-plugin-to-view-interactive-content

Upvotes: 2

SkyWalker
SkyWalker

Reputation: 29130

Actually, this problem has various reasons. I am sharing some of them and giving some suggestion link to solve the issue. You have to make some try of them.

Suggestion-1:

this warning isn't coming from firefox but from the java plugin itself - please update your plugins.

some more information about java's security settings are also available at oracle's support: https://www.java.com/en/download/help/jcp_security.xml

Resource Link:

  1. How can I stop Firefox from blocking a Java applet from a site that I trust?

Suggestion-2:

Remove stand-alone version of JavaFX (Windows)

If you have JavaFX installed then

  1. Find and remove all versions of JavaFX and Java through the Windows Uninstall Control Panel.
  2. Run the Microsoft uninstall utility to repair corrupted registry keys that prevents programs from being completely uninstalled or blocking new installations and updates.
  3. Reinstall Java

Suggestion-3:

Older versions of the Java Deployment Toolkit (DT) and the Java Plugin have been disabled by Firefox. Some Java versions are flagged by Firefox as 'Add-ons may be causing problems'.

If Firefox thinks an add-on is unsafe and can cause a security risk, it will block it from loading. In case of a soft block Firefox will present a warning message but will allow the user to continue if they wish but with compromised security. In the case of a hard block Firefox will block installation so that the user cannot use this add-on. To resolve this, the user should update to latest version of Java.

Workaround

Upgrading to the latest Java 7 version should resolve the issue. If you see the warning message, follow these steps:

  1. Ensure that the Disable box is checked.
  2. Click on Restart Firefox.
  3. Download the latest version of Java..

Resource Link:

  1. Firefox warning message: Add-ons may be causing problems

Suggestion-4:

There are 2 links for java applet issue for firefox and solvency. You can go through:

  1. I can't run applet on my firefox browser
  2. Java applet not working in firefox

Upvotes: 2

Maharsh
Maharsh

Reputation: 92

I believe, you are using java 7/8. Have you checked following link of mozilla. https://java.com/en/download/help/firefox_java.xml. As applet works as a plugin, this option would help.

Upvotes: 1

Related Questions