Tomcat 5 and applet

2004-02-10 Thread 郑金元
How to deplay applet in tomcat ? Can somebody give a sample ? When I request a page on tomcat contain a applet , IE tell me can find the applet class, but when I explore the IE cache dir ,I found the class is there Can somebody tell me why ? Sorry for my pool englist Thanks zhengjinyu

Re: Tomcat 5 and applet

2004-02-10 Thread Sam Seaver
It's all in the html, it doesnt really matter if its tomcat or not, because even if you're using JSP, you're still reverting to html to get the browser to display the applet (i dont trust btw, though the latest tomcat might support it better). I simply use this: http://java.sun.com/products/plug

Re: Tomcat 5 and applet

2004-02-10 Thread Vernon Wu
Since an Applet runs on a client box, you first need to place the .class in a client accessible directory, not underWEB-INF. -- - Original Message - DATE: Wed, 11 Feb 2004 00:51:30 From: Ö£½ðÔª <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: >How to deplay applet in tomcat ? >

Re: Tomcat 5 and applet

2004-02-10 Thread BAO RuiXian
Vernon Wu wrote: Since an Applet runs on a client box, you first need to place the .class in a client accessible directory, not underWEB-INF. But he said the applet class is already in the IE cache dir, so obviously his applet is already in a place accessable to the browser. Best Bao --