What's wrong with my object tag to embed a Java Applet?

Posted by predhme on Stack Overflow See other posts from Stack Overflow or by predhme
Published on 2010-04-28T14:06:32Z Indexed on 2010/04/28 14:43 UTC
Read the original article Hit count: 278

Filed under:
|
|

Here is my object tag.

    <object classid="java:my.full.class.Name.class"
            height="360" width="320">
        <param name="type" value="application/x-java-applet">
        <param name="archive" value="applets.jar">
        <param name="file" value="/report_files/1-1272041330710YAIwK">
        <param name="codebase" value="/applets">
    </object>

When I run this in firefox it just shows up with an Error, click for details. The java console shows absolutely nothing. And at the bottom of fire fox is says "Applet my.full.class.Name notloaded". The Name.class file is in the applets.jar file. I can type the URL /applets/applets.jar and access the jar file. So whats wrong?

EDIT: I can access the param file as well, although I don't believe that is the issue.

EDIT: I updated the tag because I noticed in my HTML logs it wasn't looking in the right place. Still nothing though

© Stack Overflow or respective owner

Related posts about java

Related posts about applet