Search code examples
javaapplet

Loading Java Applet ... network: Cache entry not found


I have done with All stuff with Applet. I published the applet on the server. It is running fine from IE on all machines. But it is not running on firefox. Below is the stack trace for the same. Please advise for the same.

Code of Applet:

 public void init()
    {
showInst();
}
public void showInst()
    {

        Inst inst = new ANTInst();
     JFrame app = new JFrame("Test App");
        app.getContentPane().add(instruction, "Center");
        app.setResizable(false);
        instruction.setFrameHandler(app);
        app.show();

   }
basic: Loading Java Applet ...
network: Cache entry not found [url: http://www.attentiontranslator.com/ant_test/, version: null]
network: Cache entry not found [url: http://www.attentiontranslator.com/ant_test/ANT.class, version: null]


<applet  code=ANT.class width=300 height=300>
</applet>

I have check that java is installed with updated version Please find more logs below

security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.
security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws
security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws
security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.deploy
security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.deploy
security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
security: property package.definition value null
security: property package.definition new value com.sun.javaws
security: property package.definition value com.sun.javaws
security: property package.definition new value com.sun.javaws,com.sun.deploy
security: property package.definition value com.sun.javaws,com.sun.deploy
security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp
security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
security: property package.definition value com.sun.javaws,com.sun.deploy,com.sun.jnlp
security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
basic: Added progress listener: sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@13d93f4
basic: Loading Java Applet ...
network: Cache entry not found [url: http://www.attentiontranslator.com/ant_test/, version: null]
network: Cache entry not found [url: http://www.attentiontranslator.com/ant_test/ANT.class, version: null]

enter image description here

enter image description here


Solution

  • Have you checked that the Java plugin is working in Firefox?

    Edit: Apparently, FF requires Java 6 Update 10 (or above) to work.