Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

unreachable applet 1

Status
Not open for further replies.

jcamp

Programmer
Mar 31, 2004
31
US
why is tomcat 5.0 unable to find my applet.

the html page which calls it is in tomcat_home/myapp and the applet is com.jrefinery.chart.demo.applet.Applet1.class which is housed in tomcat_home/myapp/WEB-INF/classes/com/jrefinery/chart/demo/applet

 
Applets do not work the same as servlets - so placing them in the WEB-INF/classes directory will not work. The best thing is to jar up the applets, and place the jar file in the same directory as the html, and then in the <applet> tag, add :

archive="myjar.jar
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top