Embedding a java applet in WordPress

I have an applet that works alright on this page. It just references the .class file. (unfortunately, I have lost the source, and the jar files.)

I want to reference it here, however it does not start. Probably because it cannot find the class file. the applet tag looks like this

Read More
<applet code="/applets/language/LanguageEngineApplet.class" width="1174" Height="402">
<embed code="/applets/language/LanguageEngineApplet.class" width="1174" height="402" type="application/x-java-applet" pluginspage="http://www.java.com/en/download/manual.jsp"/>
</applet>

I know the .class file is there, because I can link to it. So I’m stumped as to why this won’t work.

Related posts

Leave a Reply

3 comments

  1. I just put the applet in a page on it’s own. The problem was not my Java version, it was the class name and the path and the package interacting somehow. I had to put it in a directory on its own, with the html file that referenced it in that directory.