On Mon, 16 Jun 2003 18:03, Paridhi Bansal wrote: > Mine is a normal servlet applet based web-based application where servlet > is ionvoked from an html page link.The servlet throws a jar file containing > the main applet class and the other files. As per the tomcat docs, i hve > kept the servlet in WEB-INF/classes directory and the jar file > inWEB-INF/lib directory. On accessing the servlet, this applet never opens > up saying AppletNot Found.. G'day,
The WEB-INF/lib directory is a protected directory so the client can't load the jar file for the applet, it has to go somewhere it is visible by the client side ie. in the webapp directory or a subdirectory off of it. The jar files that go in WEB-INF/lib are met for use by Tomcat itself not an applet served on the client side. Regards, -- Jason Bainbridge http://jblinux.org --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
