I face a porblem loading applets into html page. I have been working on this issue for 5 days now and couldn't figure out the solution. All the google links guide me to this amazing forum. However, I didn't solve the problem yet. I hope that I end up with this issue here.
When I load the applet in the browser with apache tomcat v5.5 running on local host, i get this error:
Java Plug-in 1.5.0_16 Using JRE version 1.5.0_16 Java HotSpot(TM) Client VM User home directory = /home/mouza
---------------------------------------------------- c: clear console window f: finalize objects on finalization queue g: garbage collect h: display this help message l: dump classloader list m: print memory usage o: trigger logging p: reload proxy configuration q: hide console r: reload policy configuration s: dump system and deployment properties t: dump thread list v: dump thread stack x: clear classloader cache 0-5: set trace level to <n> ----------------------------------------------------
load: class EchoApplet.class not found. java.lang.ClassNotFoundException: EchoApplet.class at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:179) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:119) at java.lang.ClassLoader.loadClass(ClassLoader.java:251) at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:613) at sun.applet.AppletPanel.createApplet(AppletPanel.java:723) at sun.plugin.AppletViewer.createApplet(AppletViewer.java:1813) at sun.applet.AppletPanel.runLoader(AppletPanel.java:652) at sun.applet.AppletPanel.run(AppletPanel.java:326) at java.lang.Thread.run(Thread.java:595)
Please, can anyone help me solving this problem asap? [ October 29, 2008: Message edited by: Mouza Ali ]
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35252
7
posted
0
Using an absolute path for "codebase" doesn't work; it needs to be relative. The easiest would be to put the class files into the same directory as the HTML file. Then you don't need the codebase attribute at all.